From 31df729bbc664b826536a344e2bf7dd81854c477 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 30 七月 2024 17:21:43 +0800 Subject: [PATCH] 2024-07-30 --- src/tabviews/custom/components/table/base-table/index.jsx | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/tabviews/custom/components/table/base-table/index.jsx b/src/tabviews/custom/components/table/base-table/index.jsx index 10d0453..2dadeda 100644 --- a/src/tabviews/custom/components/table/base-table/index.jsx +++ b/src/tabviews/custom/components/table/base-table/index.jsx @@ -439,7 +439,19 @@ * 鍚湁鍒濆涓嶅姞杞界殑椤甸潰锛屼慨鏀硅缃� */ refreshbysearch = (searches) => { - const { config} = this.state + const { config, BID } = this.state + + if (config.setting.supModule && !BID) { + notification.warning({ + top: 92, + message: window.GLOB.dict['sup_key_req'] || '闇�瑕佷笂绾т富閿�硷紒', + duration: 5 + }) + this.setState({ + search: searches + }) + return + } this.setState({ pageIndex: 1, @@ -568,7 +580,7 @@ if (config.uuid !== menuId) return if (position === 'line' || position === 'line_grid') { - if (lines && lines.length === 1) { + if (lines && lines.length === 1 && !config.forbidLine) { this.loadLinedata(lines[0].$$uuid, position) } else { this.reloadtable(btn, id) @@ -585,9 +597,7 @@ if (config.$searchId !== searchId) return - this.setState({pageIndex: 1}, () => { - this.reloadtable() - }) + this.reloadtable() } autoExec = (times) => { -- Gitblit v1.8.0