index.js
1.64 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
/**
* on sale page store
* @author: qi.li <qi.li@yoho.cn>
* @date: 2017/04/13
*/
let tableCols = [
{
title: 'SKN',
key: 'productSkn',
align: 'center'
},
{
title: '图片',
key: 'image',
align: 'center',
render(row) {
return `<div> <img v-prod-img="row.productSkn"> </div>`
}
},
{
title: '商品名称',
key: 'productName',
align: 'center',
},
{
title: '品牌',
key: 'brandName',
align: 'center',
},
{
title: '库存',
key: 'storage',
align: 'center',
},
{
title: '销售价',
key: 'salePrice',
align: 'center'
},
{
title: '更新时间',
key: 'editTime',
align: 'center'
},
{
title: '操作',
key: 'action',
align: 'center',
render: function(row) {
return `<div class="action-btn-row">
<i-button type="primary" size="small" @click="editStore(row)">库存编辑</i-button>
</div> `;
}
}
];
let tableData = [
{
"brandId": 1306,
"brandName": "BLOCCO5",
"editTime": 0,
"isAdvance": "N",
"isJit": "Y",
"productName": "B5 BY BLOCCO 5 2016年春夏 平底女士时装鞋 G1ABY143A2L06 裸色",
"productSkn": 51203652,
"salePrice": 1683.00,
"shopId": 412,
"sknFactoryCode": "",
"storage": 0,
"supplierId": 1186
}
];
let pageData = {
total: 0,
current: 1,
pageSize: 20
};
export {
tableCols,
tableData,
pageData
}