detail.js
2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* on detail page store
* @author: wsl <shuiling.wang@yoho.cn>
* @date: 2017/07/11
*/
export default function() {
return {
tableCols: [
{
title: '对账单号',
key: 'balanceId',
align: 'center'
},
{
title: 'SKU',
key: 'productSku',
align: 'center'
},
{
title: '产品名称',
key: 'productName',
align: 'center',
},
{
title: '厂家编号',
key: 'factoryCode',
align: 'center',
},
{
title: '品牌',
key: 'brandName',
align: 'center'
},
{
title: '订单号',
key: 'orderCode',
align: 'center'
},
{
title: '业务类型',
key: 'typeDesc',
align: 'center'
},
{
title: '吊牌价',
key: 'retailPrice',
align: 'center'
},
{
title: '成交价',
key: 'lastPrice',
align: 'center'
},
{
title: '折扣',
key: 'purchaseDiscount',
align: 'center'
},
{
title: '结算类型',
key: 'sellTypeDesc',
align: 'center'
},
{
title: '数量',
key: 'salesNums',
align: 'center'
},
{
title: '结算价',
key: 'clearingPrice',
align: 'center'
},
{
title: '审核',
key: 'checkDesc',
align: 'center'
},
{
title: '状态',
key: 'statusDesc',
align: 'center'
}
],
tableData: [],
pageData: {
total: 0,
pageNo: 1,
pageSize: 20
}
};
}