|
@@ -1,7 +1,7 @@
|
|
export const AttributeColumns = [
|
|
export const AttributeColumns = [
|
|
{ type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
{ type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
{
|
|
{
|
|
- field: 'name', title: '属性名称', minWidth: 'auto', align: 'center',fixed: 'left',
|
|
|
|
|
|
+ field: 'name', title: '属性名称', minWidth: 'auto', align: 'center', fixed: 'left',
|
|
slots: { default: 'name' }
|
|
slots: { default: 'name' }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -22,47 +22,18 @@ export const AttributeColumns = [
|
|
}
|
|
}
|
|
];
|
|
];
|
|
|
|
|
|
-export const OnlineMerchandiseColumns = [
|
|
|
|
- { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left', },
|
|
|
|
- { field: 'asin', title: 'ASIN', minWidth: 'auto', align: 'center', slots: { default: 'asin' }, fixed: 'left', },
|
|
|
|
- { field: 'sku', title: 'SKU', minWidth: 'auto', align: 'center', slots: { default: 'sku' } },
|
|
|
|
- { field: 'platform_number', title: '平台编号', minWidth: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'platform_number' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'shop_name', title: '店 铺', minWidth: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'shop_name' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'country_code', title: '国 家', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'country_code' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'region', title: '站 点', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'region' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'quantity', title: '可售数量', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'quantity' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'fulfillment_channel', title: '配送方式', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'fulfillment_channel' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'raw_launch_datetime', title: '上架时间', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'raw_launch_datetime' }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'price', title: '价 格', width: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'price' }
|
|
|
|
|
|
+export const ProductBrandColumns = [
|
|
|
|
+ { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
|
|
+ { field: 'brand_name', title: '品牌名称', align: 'center', fixed: 'left',
|
|
|
|
+ slots: { default: 'brand_name' }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- field: 'status', title: '状 态', width: 80, align: 'center',
|
|
|
|
- slots: { default: 'status' }
|
|
|
|
|
|
+ field: 'update_datetime', title: '更新时间', align: 'center',
|
|
|
|
+ slots: { default: 'update_datetime' }
|
|
},
|
|
},
|
|
|
|
+ { field: 'create_datetime', title: '创建时间', align: 'center', slots: { default: 'create_datetime' } },
|
|
{
|
|
{
|
|
- field: 'create_datetime', title: '创建时间', minWidth: 'auto', align: 'center',
|
|
|
|
- slots: { default: 'create_datetime' }
|
|
|
|
|
|
+ field: 'operate', title: '操 作', align: 'center', fixed: 'right',
|
|
|
|
+ slots: { default: 'operate' }
|
|
}
|
|
}
|
|
];
|
|
];
|