搜索框样式

This commit is contained in:
lai
2024-07-16 18:23:36 +08:00
parent 48bac47c6b
commit a6e100b5c2
2 changed files with 7 additions and 5 deletions

View File

@@ -1320,13 +1320,13 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="queryParams.imsi?10:8" :md="12" :xs="24">
<a-col :lg="10" :md="12" :xs="24">
<a-form-item label="IMSI" name="imsi">
<a-input
v-model:value="queryParams.imsi"
allow-clear
:maxlength="15"
:style="queryParams.imsi?'width:70%':'width:100%'"
style="width:70%"
:placeholder="t('common.inputPlease')"
></a-input>
<a-select
@@ -1342,7 +1342,7 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="queryParams.imsi?8:10" :md="12" :xs="24">
<a-col :lg="8" :md="12" :xs="24">
<a-form-item label="MSISDN" name="msisdn">
<a-input
v-model:value="queryParams.msisdn"

View File

@@ -1196,12 +1196,14 @@ onMounted(() => {
v-model:value="queryParams.imsi"
allow-clear
:maxlength="15"
style="width: 60%"
style="width: 70%"
: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' },