修改input框

This commit is contained in:
lai
2024-07-15 11:10:40 +08:00
parent 0b98a1f697
commit af5ac7d29a
3 changed files with 38 additions and 48 deletions

View File

@@ -1320,21 +1320,18 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="6" :md="12" :xs="24">
<a-col :lg="12" :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%"
:placeholder="t('common.inputPlease')"
></a-input>
</a-form-item>
</a-col>
<a-col :lg="3" :md="12" :xs="24" v-show="queryParams.imsi">
<a-form-item name="imsiMatch">
<a-select
:label="t('views.neUser.sub.imsiMode')"
style="width: 100%"
style="width: 40%"
v-model:value="queryParams.imsiMatch"
:options="[
{ label: t('views.neUser.sub.fuzzyMatch'), value: 'fuzzy' },
@@ -1344,6 +1341,7 @@ onMounted(() => {
</a-form-item>
</a-col>
<a-col :lg="6" :md="12" :xs="24">
<a-form-item label="MSISDN" name="msisdn">
<a-input

View File

@@ -1000,43 +1000,33 @@ onMounted(() => {
/>
</a-form-item>
<a-row
:gutter="16"
<a-form-item
:label="t('views.system.tenant.key')"
name="radioType"
:label-col="{ span: 4 }"
:extra="keyTip"
v-bind="modalStateTypeFrom.validateInfos.radioType"
v-show="modalState.typeFrom.tenancyType == 'RADIO'"
>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.tenant.key')"
name="radioType"
:extra="keyTip"
v-bind="modalStateTypeFrom.validateInfos.radioType"
>
<a-select
v-model:value="modalState.typeFrom.radioType"
:options="[
{ label: '4G', value: '4G' },
{ label: '5G', value: '5G' },
]"
@change="fnRadioIdChange"
>
</a-select>
</a-form-item>
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
name="radioId"
v-bind="modalStateTypeFrom.validateInfos.radioId"
>
<a-auto-complete
v-model:value="modalState.typeFrom.radioId"
:options="dict.allRadio"
:filter-option="filterOption"
style="width: 200px"
allow-clear
/>
</a-form-item>
</a-col>
</a-row>
<a-select
v-model:value="modalState.typeFrom.radioType"
:options="[
{ label: '4G', value: '4G' },
{ label: '5G', value: '5G' },
]"
@change="fnRadioIdChange"
style="width: 20%"
>
</a-select>
<a-auto-complete
v-model:value="modalState.typeFrom.radioId"
:options="dict.allRadio"
:filter-option="filterOption"
style="width: 20%"
allow-clear
/>
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="16">

View File

@@ -1190,16 +1190,17 @@ onMounted(() => {
/>
</a-form-item>
</a-col>
<a-col :lg="6" :md="12" :xs="24">
<a-col :lg="8" :md="12" :xs="24">
<a-form-item label="IMSI" name="imsi">
<a-input v-model:value="queryParams.imsi" allow-clear></a-input>
</a-form-item>
</a-col>
<a-col :lg="3" :md="12" :xs="24" v-show="queryParams.imsi">
<a-form-item name="imsiMatch">
<a-input
v-model:value="queryParams.imsi"
allow-clear
:maxlength="15"
style="width: 60%"
></a-input>
<a-select
:label="t('views.neUser.sub.imsiMode')"
style="width: 100%"
style="width: 40%"
v-model:value="queryParams.imsiMatch"
:options="[
{ label: t('views.neUser.sub.fuzzyMatch'), value: 'fuzzy' },
@@ -1208,6 +1209,7 @@ onMounted(() => {
/>
</a-form-item>
</a-col>
<a-col :lg="6" :md="12" :xs="24">
<a-form-item label="MSISDN" name="msisdn">
<a-input v-model:value="queryParams.msisdn" allow-clear></a-input>