From 2e5fe5427d6db393e0495598ff43d90a052f4791 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期日, 28 四月 2024 14:06:42 +0800 Subject: [PATCH] 2024-04-28 --- src/tabviews/zshare/actionList/exceloutbutton/index.jsx | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/tabviews/zshare/actionList/exceloutbutton/index.jsx b/src/tabviews/zshare/actionList/exceloutbutton/index.jsx index f94347e..c0fd989 100644 --- a/src/tabviews/zshare/actionList/exceloutbutton/index.jsx +++ b/src/tabviews/zshare/actionList/exceloutbutton/index.jsx @@ -605,6 +605,15 @@ } } + if (val !== '') { + if (col.prefix) { + val = col.prefix + val + } + if (col.postfix) { + val = val + col.postfix + } + } + _row[col.Column] = val }) @@ -707,6 +716,15 @@ } } + if (val !== '') { + if (col.prefix) { + val = col.prefix + val + } + if (col.postfix) { + val = val + col.postfix + } + } + _row[col.Column] = val }) -- Gitblit v1.8.0