|
@@ -115,12 +115,12 @@ export default {
|
|
|
listData: [],
|
|
|
// 表头
|
|
|
columns: [
|
|
|
- { title: '序号', dataIndex: 'no', width: 50, align: 'center' },
|
|
|
+ { title: '序号', dataIndex: 'no', width: 30, align: 'center' },
|
|
|
{ title: '产品编码', dataIndex: 'productCode', align: 'center', width: 100, customRender: function (text) { return text || '--' } },
|
|
|
{ title: '原厂编码', dataIndex: 'productOrigCode', align: 'center', width: 100, customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品品牌', dataIndex: 'productBrandName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '供应商', dataIndex: 'supplierName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '产品名称', dataIndex: 'productName', align: 'center', width: 100, customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '产品名称', dataIndex: 'productName', align: 'center', width: 120, customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品一级分类', dataIndex: 'productTypeName1', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品二级分类', dataIndex: 'productTypeName2', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品三级分类', dataIndex: 'productTypeName3', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
|