From 4ce77c01c1adcbd1b3cb2aa5b7103a827d189811 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 06 二月 2025 20:53:22 +0800 Subject: [PATCH] Merge branch 'develop' --- src/tabviews/zshare/mutilform/mkPopSelect/index.jsx | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/tabviews/zshare/mutilform/mkPopSelect/index.jsx b/src/tabviews/zshare/mutilform/mkPopSelect/index.jsx index 8b18bcf..bc9fe92 100644 --- a/src/tabviews/zshare/mutilform/mkPopSelect/index.jsx +++ b/src/tabviews/zshare/mutilform/mkPopSelect/index.jsx @@ -61,6 +61,7 @@ }) let placeholder = '' + let searchKey = '' if (!config.searchKey) { config.onload = 'true' } else { @@ -74,6 +75,11 @@ }) placeholder = placeholder ? placeholder.join('銆�') : '' + + if (value && !config.showValue) { + searchKey = value + config.onload = 'true' + } } this.state = { @@ -84,7 +90,7 @@ showValue: config.showValue, placeholder, arr_field: arrfield.join(','), - searchKey: '', + searchKey: searchKey, pageIndex: 1, pageSize: 10, orderBy: '', -- Gitblit v1.8.0