From 50b49c1b760489c3430fc382656d57c5fbbab07c Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 29 四月 2024 16:07:24 +0800 Subject: [PATCH] 2024-04-29 --- src/tabviews/zshare/normalTable/index.jsx | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/tabviews/zshare/normalTable/index.jsx b/src/tabviews/zshare/normalTable/index.jsx index 44d6ab9..f9187b3 100644 --- a/src/tabviews/zshare/normalTable/index.jsx +++ b/src/tabviews/zshare/normalTable/index.jsx @@ -344,11 +344,14 @@ e.stopPropagation() let __param = { - $searchkey: item.field, - $searchval: record[item.field] || '', $BID: record.$$uuid } + if (item.field) { + __param.$searchkey = item.field.toLowerCase() + __param.$searchval = record[item.field] || '' + } + if (item.linkfields && item.linkfields.length > 0) { item.linkfields.forEach(field => { __param[field] = record[field] || '' -- Gitblit v1.8.0