From 57f68ff133332ec266105d54adf39493ce01ddd7 Mon Sep 17 00:00:00 2001 From: tengxiaofei <302828528@qq.com> Date: Thu, 29 Aug 2024 11:55:19 +0800 Subject: [PATCH] =?UTF-8?q?HL-5349=EF=BC=9A=E6=89=80=E6=9C=89=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=A1=B5=E7=9A=84=E7=AD=9B=E9=80=89=EF=BC=8C=E5=92=8C?= =?UTF-8?q?=E5=BC=B9=E5=87=BA=E9=A1=B5=E7=9A=84=E7=AD=9B=E9=80=89=EF=BC=8C?= =?UTF-8?q?=E9=83=BD=E5=B0=86=E3=80=90=E6=A8=A1=E7=B3=8A=E3=80=91=E5=81=9A?= =?UTF-8?q?=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=93=8D=E4=BD=9C=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SearchHigh/src/SearchHigh.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/SearchHigh/src/SearchHigh.vue b/src/components/SearchHigh/src/SearchHigh.vue index 62eb8ae89..40ad186f9 100644 --- a/src/components/SearchHigh/src/SearchHigh.vue +++ b/src/components/SearchHigh/src/SearchHigh.vue @@ -127,6 +127,10 @@ const butttondata = [ // 高级筛选条件列表配置 ==,!=,>,<,>=,<=,like,in,notIn,betweeen,isNull,isNotNull const moreListOptions = ref({ action: [ + { + value: 'like', + label: t('ts.模糊') + }, { value: '==', label: t('ts.等于') @@ -145,9 +149,6 @@ const moreListOptions = ref({ }, { value: '<=', label: t('ts.小于等于') - }, { - value: 'like', - label: t('ts.模糊') }, { value: 'in', label: t('ts.包含') @@ -237,7 +238,7 @@ const moreListDelete = (val,item,$event) => { const moreListPush = () => { let data = { column: '', - action: "==", + action: "like", value: "", value1 :"" } @@ -250,7 +251,7 @@ const resetSelect = (val) => { val.action = 'betweeen' val.disabled = false }else{ - val.action = '==' + val.action = 'like' val.disabled = false } val.value1 = ""