From b402d52c8df1f7d1a7f218bbf378f329a1cc949e Mon Sep 17 00:00:00 2001 From: "X.Mo" Date: Tue, 31 Oct 2023 15:37:57 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=BE=AE=E8=B0=83=E5=85=AC?= =?UTF-8?q?=E5=85=B1=E6=A8=A1=E6=9D=BF=E9=80=BB=E8=BE=91=EF=BC=8C=E8=AE=A9?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9A=84=E9=85=8D=E7=BD=AE=E5=8F=AF=E5=8D=95?= =?UTF-8?q?=E7=8B=AC=E8=A6=86=E7=9B=96=E5=85=AC=E5=85=B1=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ma-crud/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ma-crud/index.vue b/src/components/ma-crud/index.vue index a37c0ec4..79503bf2 100644 --- a/src/components/ma-crud/index.vue +++ b/src/components/ma-crud/index.vue @@ -367,7 +367,7 @@ const dictColors = (dataIndex, value) => { // 公用模板 columns.value.map((item, index) => { if (item.common && globalColumn[item.dataIndex]) { - columns.value[index] = globalColumn[item.dataIndex] + columns.value[index] = Object.assign(globalColumn[item.dataIndex], item) item = columns.value[index] } !item.width && (item.width = options.value.columnWidth)