From 2a0b8a1f99f61d50fe2983eed2bead449a50704a Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期三, 09 四月 2025 23:43:16 +0800 Subject: [PATCH] Merge branch 'positec' into dms --- src/tabviews/custom/components/table/edit-table/normalTable/index.jsx | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx b/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx index 9f8e3df..b596c48 100644 --- a/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx +++ b/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx @@ -2628,7 +2628,11 @@ let lines = data.map(item => { let vals = [] forms.forEach(col => { - vals.push(item[col.field]) + if (typeof(item[col.field]) === 'number') { + vals.push(item[col.field] + '') + } else { + vals.push(item[col.field]) + } }) vals.push(item.$$uuid) -- Gitblit v1.8.0