From 5f1b3d281c98780dc1b5e1a95f4b128c393989a4 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 09 十一月 2023 20:36:19 +0800 Subject: [PATCH] 2023-11-09 --- src/tabviews/custom/index.jsx | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/index.jsx b/src/tabviews/custom/index.jsx index 353ccd8..0bfd2d0 100644 --- a/src/tabviews/custom/index.jsx +++ b/src/tabviews/custom/index.jsx @@ -804,6 +804,8 @@ if (group.subButton.verify && group.subButton.verify.invalid === 'true') { if (item.wrap.datatype === 'static' || item.wrap.datatype === 'public') { group.subButton.verify.invalid = 'false' + } else if (item.setting && item.setting.maxScript && item.setting.maxScript >= 300) { + group.subButton.verify.invalid = 'false' } else if (group.subButton.sqlType === 'insert') { group.subButton.verify.invalid = 'false' } else if (group.subButton.Ot === 'notRequired') { @@ -931,6 +933,8 @@ if (cell.verify && cell.verify.invalid === 'true') { if (item.wrap && (item.wrap.datatype === 'static' || item.wrap.datatype === 'public')) { cell.verify.invalid = 'false' + } else if (item.setting && item.setting.maxScript && item.setting.maxScript >= 300) { + cell.verify.invalid = 'false' } else if (cell.intertype !== 'system' && cell.procMode !== 'system') { cell.verify.invalid = 'false' } else if (cell.sqlType === 'insert') { -- Gitblit v1.8.0