...
|
...
|
@@ -8,13 +8,11 @@ let tableCols = [ |
|
|
{
|
|
|
title: 'SKN',
|
|
|
key: 'productSkn',
|
|
|
width: 200,
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '图片',
|
|
|
key: 'image',
|
|
|
width: 200,
|
|
|
align: 'center',
|
|
|
render(row) {
|
|
|
return `<div>
|
...
|
...
|
@@ -35,25 +33,21 @@ let tableCols = [ |
|
|
{
|
|
|
title: '库存',
|
|
|
key: 'storage',
|
|
|
width: 100,
|
|
|
align: 'center',
|
|
|
},
|
|
|
{
|
|
|
title: '销售价',
|
|
|
key: 'salePrice',
|
|
|
width: 200,
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '更新时间',
|
|
|
key: 'editTime',
|
|
|
width: 150,
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
|
key: 'action',
|
|
|
width: 180,
|
|
|
align: 'center',
|
|
|
render: function(row) {
|
|
|
return `<div class="action-btn-row">
|
...
|
...
|
|