detail.js
2.36 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
93
94
95
/**
* 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: 'sizeName',
align: 'center'
},
{
title: '品牌',
key: 'brandName',
align: 'center'
},
{
title: '业务类型',
key: 'agencyTypeDesc',
align: 'center'
},
{
title: '数量',
key: 'salesNums',
align: 'center'
},
{
title: '结算金额',
key: 'salesAmount',
align: 'center'
},
{
title: '付款状态',
key: 'payerStatusDesc',
align: 'center'
},
{
title: '对账起止日期',
key: 'clearingInterval',
align: 'center'
}
],
tableData: [],
pageData: {
total: 0,
pageNo: 1,
pageSize: 20
},
filters: {
sku: {
label: 'SKU',
labelSpan: 6,
model: '',
holder: '',
fieldSpan: 18
},
balanceId: {
label: '结算单号',
labelSpan: 6,
model: this.$route.query.balanceId,
holder: '',
fieldSpan: 18
},
brandId: {
label: '品牌',
labelSpan: 6,
model: this.$route.query.brandId,
holder: '',
fieldSpan: 18
},
}
};
}