更新用户策略提示信息

This commit is contained in:
lai
2024-04-10 19:00:56 +08:00
parent c674b9b3f9
commit 2202540763
3 changed files with 85 additions and 1 deletions

View File

@@ -719,6 +719,15 @@ export default {
delSure:'Are you sure you want to delete the user with IMSI number: {imsi}?',
uploadFileOk: 'File Upload Successful',
uploadFileErr: 'File Upload Failed',
pccRuleTip:'templates of PCC rule(pccRules.yaml)',
sessRuleTip:'templates of session rule(sessRules.yaml)',
qosAudioTip:'QoS of audio call(qosTpl.yaml)',
qosVideoTip:'QoS of video call(qosTpl.yaml)',
hdrTip:'HTTP header enrich(headerEnrichTpl.yaml)',
ueTip:'template of UE Policy(ursp.yaml)',
sarTip1:'Service Area Restriction',
sarTip2:'(serviceAreaRestriction.yaml)',
rfsfTip:'RAT Frequency Selection Priority',
},
base5G: {
neType: 'NE Object',

View File

@@ -719,6 +719,15 @@ export default {
delSure:'确认删除IMSI编号为: {imsi} 的用户吗?',
uploadFileOk: '文件上传成功',
uploadFileErr: '文件上传失败',
pccRuleTip:'PCC策略规则模板(pccRules.yaml)',
sessRuleTip:'会话策略规则模板(sessRules.yaml)',
qosAudioTip:'语音呼叫QoS(qosTpl.yaml)',
qosVideoTip:'视频呼叫QoS(qosTpl.yaml)',
hdrTip:'HTTP头增强(headerEnrichTpl.yaml)',
ueTip:'UE策略模板(ursp.yaml)',
sarTip1:'服务区限制',
sarTip2:'(serviceAreaRestriction.yaml)',
rfsfTip:'无线频率选择优先级',
},
base5G: {
neType: '网元对象',

View File

@@ -898,6 +898,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.pccRuleTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -908,6 +916,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.sessRuleTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -921,6 +937,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.qosAudioTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -931,6 +955,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.qosVideoTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -944,6 +976,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.hdrTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -954,6 +994,14 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.ueTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -967,6 +1015,15 @@ onMounted(() => {
allow-clear
:maxlength="64"
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.sarTip1') }}<br />
{{ t('views.neUser.pcf.sarTip2') }}<br />
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input>
</a-form-item>
</a-col>
@@ -978,7 +1035,16 @@ onMounted(() => {
:min="0"
:max="255"
placeholder="0~255"
></a-input-number>
>
<template #prefix>
<a-tooltip placement="topLeft">
<template #title>
{{ t('views.neUser.pcf.rfsfTip') }}
</template>
<InfoCircleOutlined style="color: rgba(0, 0, 0, 0.45)" />
</a-tooltip>
</template>
</a-input-number>
</a-form-item>
</a-col>
</a-row>