index.vue 1.13 KB
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
<template>
  <table class="jd-table">
    <tr class="jd-table-header">
      <th style="width:5%" />
      <th style="width:10%">运单号</th>
      <th style="width:10%">提单号</th>
      <th style="width:25%">运输方式/出货渠道</th>
      <th style="width:15%">收货人</th>
      <th style="width:10%">唛头</th>
      <th style="width:10%">物流状态</th>
      <th style="width:15%">下单时间</th>
    </tr>
    <tr class="jd-table-body">
      <td>1</td>
      <td>1</td>
      <td>1</td>
      <td>1</td>
      <td>1</td>
      <td>1</td>
      <td>1</td>
      <td>1</td>
    </tr>
  </table>
</template>

<script>
export default {
  name: 'JdButton',
  props: {
    name: {
      type: String,
      default: ''
    },
    dark: {
      type: Boolean,
      default: false
    }
  }
}
</script>

<style scoped>
.jd-table{
width: 100%;
border-collapse:collapse;
}
.jd-table-header{
  background-image: url('../../assets/profile/table.png');
  background-size: 100%;
  font-size: 13px;
  height: 48px;
}
.jd-table-header th{
  color: #fff;
  font-weight: 500;
}
.jd-table-body{
  text-align: center;
  font-size: 12px;
}
</style>