From b9c5ded6ec06d8e0571fb42445ae7c78ac7c3e13 Mon Sep 17 00:00:00 2001 From: yangchunlong <292345300@qq.com> Date: Wed, 17 Sep 2025 16:06:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=9A=80=20=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E5=AE=BD=E5=BA=A6=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../set/material/constant/list/table.ts | 34 +++++++++++++------ 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/src/views/foundation/set/material/constant/list/table.ts b/src/views/foundation/set/material/constant/list/table.ts index 172a11c..59145ca 100644 --- a/src/views/foundation/set/material/constant/list/table.ts +++ b/src/views/foundation/set/material/constant/list/table.ts @@ -4,58 +4,70 @@ export const COLUMNS = [ align: "left", fixed: true, label: "物料编码", - prop: "material_number" + prop: "material_number", + width: 200 }, { align: "left", label: "规格型号(SKU)", - prop: "sku" + prop: "sku", + fixed: true, + width: 200 }, { align: "left", label: "物料名称", - prop: "material_name" + prop: "material_name", + width: 200 }, { align: "left", label: "组织", - prop: "org_name" + prop: "org_name", + width: 200 }, { align: "left", label: "品线", - prop: "product_line" + prop: "product_line", + width: 200 }, { align: "left", label: "69码", - prop: "bar_code" + prop: "bar_code", + width: 200 }, { align: "left", label: "FNSKU", - prop: "fnsku" + prop: "fnsku", + width: 200 }, { align: "left", label: "1级分类", - prop: "category_lv1" + prop: "category_lv1", + width: 200 }, { align: "left", label: "2级分类", - prop: "category_lv2" + prop: "category_lv2", + width: 200 }, { align: "left", label: "3级分类", - prop: "category_lv3" + prop: "category_lv3", + width: 200 }, { align: "left", label: "SPU", - prop: "spu" + prop: "spu", + width: 200 } ];