From f3d4db769ba9b51b799d981511a710fd443d0e08 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 21 四月 2025 12:18:03 +0800 Subject: [PATCH] Merge branch 'master' into positec --- src/mob/components/search/single-search/options.jsx | 66 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 1 deletions(-) diff --git a/src/mob/components/search/single-search/options.jsx b/src/mob/components/search/single-search/options.jsx index 843e3ef..f5a51e3 100644 --- a/src/mob/components/search/single-search/options.jsx +++ b/src/mob/components/search/single-search/options.jsx @@ -38,6 +38,49 @@ required: false }, { + type: 'text', + field: 'initval', + label: '鍒濆鍊�', + initval: wrap.initval || '', + tooltip: '鍙娇鐢ˊusername@銆丂fullName@', + required: false + }, + { + type: 'radio', + field: 'focus', + label: '鑷姩鑱氱劍', + initval: wrap.focus || 'false', + tooltip: '娉細ios绯荤粺涓棤鏁堛��', + required: false, + options: [ + {value: 'true', label: '鏄�'}, + {value: 'false', label: '鍚�'}, + ] + }, + { + type: 'radio', + field: 'required', + label: '蹇呭~', + initval: wrap.required || 'false', + required: false, + options: [ + {value: 'true', label: '鏄�'}, + {value: 'false', label: '鍚�'}, + ] + }, + { + type: 'radio', + field: 'match', + label: '鍖归厤鏂瑰紡', + initval: wrap.match || 'like', + required: true, + options: [ + {value: 'like', label: 'like'}, + {value: 'not like', label: 'not like'}, + {value: '=', label: '='}, + ] + }, + { type: 'radio', field: 'show', label: '鎼滅储鏍峰紡', @@ -68,7 +111,28 @@ precision: 0, initval: wrap.borderRadius || 0, required: false - } + }, + { + type: 'number', + field: 'height', + label: '楂樺害', + min: 28, + max: 150, + precision: 0, + initval: wrap.height || 32, + required: false + }, + { + type: 'radio', + field: 'permission', + label: '鏉冮檺楠岃瘉', + initval: wrap.permission || 'false', + required: false, + options: [ + {value: 'true', label: '鍚敤'}, + {value: 'false', label: '绂佺敤'}, + ] + }, ] return wrapForm -- Gitblit v1.8.0