From 939ea6170c682682fc7e78303e71fd38b443402e Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期四, 14 八月 2025 17:44:34 +0800 Subject: [PATCH] feat: 接口对接 --- src/views/System/ModuleManage.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/System/ModuleManage.vue b/src/views/System/ModuleManage.vue index 217df8b..b55268a 100644 --- a/src/views/System/ModuleManage.vue +++ b/src/views/System/ModuleManage.vue @@ -529,7 +529,7 @@ name: subModule.name, group: state.group, // location: 'string', - width: subModule.width, + width: subModule.width.toString(), sort: subModule.sortCode, }; if (subModule.id) { @@ -564,7 +564,7 @@ group.fields = columnModuleList.map((c) => ({ code: c.enCode, name: c.name, - width: c.width, + width: c.width.toString(), sort: c.sortCode, })); } @@ -576,7 +576,7 @@ fields: columnModuleList.map((c) => ({ code: c.enCode, name: c.name, - width: c.width, + width: c.width.toString(), sort: c.sortCode, })), }; -- Gitblit v1.9.1