express-detail.vue
1.53 KB
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
62
63
<template>
<LayoutBody>
<Button type="primary" @click="backExpList">返回发货物流表</Button>
<span>物流单号:{{expressNo}}</span>
<span>发货时间:{{expressTime}}</span>
<LayoutList>
<Table border :columns="table.cols" :data="table.list"></Table>
</LayoutList>
</LayoutBody>
</template>
<script>
export default {
created() {
},
data() {
return {
table: {
cols: [
{
title: 'sku',
align: 'center'
},{
title: '条码',
align: 'center'
},{
title: '商品图片',
align: 'center'
},{
title: '商品名称',
align: 'center'
},{
title: '规格',
align: 'center'
},{
title: '订单号/已发数/入库数',
align: 'center'
}
],
list: [
]
},
expressNo: 123232,
expressTime: '2017-04-01 14:28:26'
}
},
methods: {
backExpList() {
this.$router.push({
name: 'trade.allot.express'
});
}
},
components: {
}
};
</script>
<style lang="scss" scoped>
</style>