签约用户搜索框机制

This commit is contained in:
lai
2024-07-16 17:37:57 +08:00
parent 79f143c22c
commit 5b17c9e497

View File

@@ -1320,19 +1320,20 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-col :lg="queryParams.imsi?10:8" :md="12" :xs="24">
<a-form-item label="IMSI" name="imsi">
<a-input
v-model:value="queryParams.imsi"
allow-clear
:maxlength="15"
style="width: 60%"
:style="queryParams.imsi?'width:70%':'width:100%'"
:placeholder="t('common.inputPlease')"
></a-input>
<a-select
:label="t('views.neUser.sub.imsiMode')"
style="width: 40%"
style="width:30%"
v-model:value="queryParams.imsiMatch"
v-show="queryParams.imsi"
:options="[
{ label: t('views.neUser.sub.fuzzyMatch'), value: 'fuzzy' },
{ label: t('views.neUser.sub.prefixMatch'), value: 'prefix' },
@@ -1341,8 +1342,7 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="6" :md="12" :xs="24">
<a-col :lg="queryParams.imsi?8:10" :md="12" :xs="24">
<a-form-item label="MSISDN" name="msisdn">
<a-input
v-model:value="queryParams.msisdn"