|
@@ -1,5 +1,5 @@
|
|
|
export const AttributeColumns = [
|
|
|
- { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
|
+ { type: 'seq', title: 'No.', width: 70, align: 'center', fixed: 'left' },
|
|
|
{
|
|
|
field: 'name', title: '属性名称', align: 'center', fixed: 'left',
|
|
|
slots: { default: 'name' }
|
|
@@ -23,28 +23,28 @@ export const AttributeColumns = [
|
|
|
];
|
|
|
|
|
|
export const ProductBrandColumns = [
|
|
|
- { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
|
+ { type: 'seq', title: 'No.', width: 70, align: 'center', fixed: 'left' },
|
|
|
{ field: 'brand_name', title: '品牌名称', align: 'center', fixed: 'left',
|
|
|
slots: { default: 'brand_name' }
|
|
|
},
|
|
|
{
|
|
|
- field: 'update_datetime', title: '更新时间', width: 180, align: 'center',
|
|
|
+ field: 'update_datetime', title: '更新时间', align: 'center',
|
|
|
slots: { default: 'update_datetime' }
|
|
|
},
|
|
|
- { field: 'create_datetime', title: '创建时间', width: 180, align: 'center', slots: { default: 'create_datetime' } },
|
|
|
+ { field: 'create_datetime', title: '创建时间', align: 'center', slots: { default: 'create_datetime' } },
|
|
|
{
|
|
|
- field: 'operate', title: '操 作', align: 'center', fixed: 'right',
|
|
|
+ field: 'operate', title: '操 作', width: 100 ,align: 'center', fixed: 'right',
|
|
|
slots: { default: 'operate' }
|
|
|
}
|
|
|
];
|
|
|
|
|
|
export const ProductCategoryColumns = [
|
|
|
- { type: 'seq', title: 'No.', width: 60, align: 'center', fixed: 'left' },
|
|
|
+ { type: 'seq', title: 'No.', width: 70, align: 'center', fixed: 'left' },
|
|
|
{ field: 'name', title: '种类名称', align: 'center', fixed: 'left',
|
|
|
slots: { default: 'name' }
|
|
|
},
|
|
|
{
|
|
|
- field: 'main', title: '主属性', align: 'center', width: 480,
|
|
|
+ field: 'main', title: '主属性', align: 'center', width: 500,
|
|
|
slots: { default: 'main' }
|
|
|
},
|
|
|
{
|
|
@@ -57,7 +57,39 @@ export const ProductCategoryColumns = [
|
|
|
},
|
|
|
{ field: 'create_datetime', title: '创建时间', align: 'center', slots: { default: 'create_datetime' } },
|
|
|
{
|
|
|
- field: 'operate', title: '操 作', align: 'center', fixed: 'right',
|
|
|
+ field: 'operate', title: '操 作', width: 100, align: 'center', fixed: 'right',
|
|
|
+ slots: { default: 'operate' }
|
|
|
+ }
|
|
|
+];
|
|
|
+
|
|
|
+export const CompanySkuColumns = [
|
|
|
+ { type: 'seq', title: 'No.', width: 70, align: 'center', fixed: 'left' },
|
|
|
+ { field: 'sku', title: 'SKU', width: 'auto', align: 'center', fixed: 'left',
|
|
|
+ slots: { default: 'sku' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'brand', title: '品牌名称', align: 'center', width: 'auto',
|
|
|
+ slots: { default: 'brand' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'kind', title: '种 类', align: 'center', width: 'auto',
|
|
|
+ slots: { default: 'kind' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'version_feature', title: '版本特性', align: 'center', minWidth: 'auto',
|
|
|
+ slots: { default: 'version_feature' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'status', title: '状 态', width: 100, align: 'center',
|
|
|
+ slots: { default: 'status' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'update_datetime', title: '更新时间', width: 170, align: 'center',
|
|
|
+ slots: { default: 'update_datetime' }
|
|
|
+ },
|
|
|
+ { field: 'create_datetime', title: '创建时间', width: 170, align: 'center', slots: { default: 'create_datetime' } },
|
|
|
+ {
|
|
|
+ field: 'operate', title: '操 作', width: 100, align: 'center', fixed: 'right',
|
|
|
slots: { default: 'operate' }
|
|
|
}
|
|
|
];
|