From dcd660c86dba586c1b78c0530ddee7c1dc093ee6 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 25 四月 2024 17:51:15 +0800 Subject: [PATCH] 2024-04-25 --- src/tabviews/zshare/actionList/exceloutbutton/index.jsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tabviews/zshare/actionList/exceloutbutton/index.jsx b/src/tabviews/zshare/actionList/exceloutbutton/index.jsx index 9899496..f94347e 100644 --- a/src/tabviews/zshare/actionList/exceloutbutton/index.jsx +++ b/src/tabviews/zshare/actionList/exceloutbutton/index.jsx @@ -860,9 +860,9 @@ _setting.arr_field = [] btn.verify.columns.forEach(col => { - if (col.Column && col.Column !== '$Index') { - _setting.arr_field.push(col.Column) - } + if (col.output === 'false' || !col.Column || col.Column === '$Index') return + + _setting.arr_field.push(col.Column) }) _setting.arr_field = _setting.arr_field.join(',') _setting.execute = btn.verify.defaultSql !== 'false' -- Gitblit v1.8.0