fix: UDM签约数据Template输入长度16改为50

This commit is contained in:
TsMask
2024-06-12 14:42:16 +08:00
parent be50fc9c5c
commit a8e0f36562

View File

@@ -1643,12 +1643,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.ambr" v-model:value="modalState.from.ambr"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -1667,12 +1667,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.nssai" v-model:value="modalState.from.nssai"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -1693,12 +1693,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.smfSel" v-model:value="modalState.from.smfSel"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -1713,7 +1713,7 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.arfb" v-model:value="modalState.from.arfb"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
@@ -1739,7 +1739,7 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.sar" v-model:value="modalState.from.sar"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
@@ -1851,12 +1851,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.from.epstpl" v-model:value="modalState.from.epstpl"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -2179,12 +2179,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.BatchForm.ambr" v-model:value="modalState.BatchForm.ambr"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -2203,12 +2203,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.BatchForm.nssai" v-model:value="modalState.BatchForm.nssai"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -2229,12 +2229,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.BatchForm.smfSel" v-model:value="modalState.BatchForm.smfSel"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"
@@ -2248,7 +2248,7 @@ onMounted(() => {
<a-form-item <a-form-item
label="5G Forbidden Areas Template" label="5G Forbidden Areas Template"
name="arfb" name="arfb"
:maxlength="16" :maxlength="50"
> >
<a-input <a-input
v-model:value="modalState.BatchForm.arfb" v-model:value="modalState.BatchForm.arfb"
@@ -2278,7 +2278,7 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.BatchForm.sar" v-model:value="modalState.BatchForm.sar"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
@@ -2390,12 +2390,12 @@ onMounted(() => {
<a-input <a-input
v-model:value="modalState.BatchForm.epstpl" v-model:value="modalState.BatchForm.epstpl"
allow-clear allow-clear
:maxlength="16" :maxlength="50"
> >
<template #prefix> <template #prefix>
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template #title> <template #title>
{{ t('views.neUser.sub.inputTip', { num: '16' }) }} {{ t('views.neUser.sub.inputTip', { num: '50' }) }}
</template> </template>
<InfoCircleOutlined <InfoCircleOutlined
style="color: rgba(0, 0, 0, 0.45)" style="color: rgba(0, 0, 0, 0.45)"