From 47abbfd1e14804bc005bf13e737ace9f65a9cbcf Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 14 八月 2025 16:27:01 +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