--完善国际化

This commit is contained in:
lai
2023-11-14 19:28:33 +08:00
parent e2b4a54943
commit c1a0c6f208
4 changed files with 29 additions and 11 deletions

View File

@@ -535,6 +535,15 @@ export default {
stopSure:'Confirm the pending task with number [{row.id}]?', stopSure:'Confirm the pending task with number [{row.id}]?',
letUpWarning:'Prohibit activation of activated tasks', letUpWarning:'Prohibit activation of activated tasks',
stopWarning: 'Prohibit suspending inactive measurement tasks', stopWarning: 'Prohibit suspending inactive measurement tasks',
weekPlan:'Week Plan',
monthPlan:'Monthly Plan',
one:'Monday',
two:'Tuesday',
three:'Wednesday',
four:'Thursday',
five:'Friday',
six:'Saturday',
seven:'Sunday',
}, },
perfThreshold:{ perfThreshold:{
thresholdValue:'Threshold Value', thresholdValue:'Threshold Value',

View File

@@ -535,6 +535,15 @@ export default {
stopSure:'确认挂起编号为 【{id}】 的任务?', stopSure:'确认挂起编号为 【{id}】 的任务?',
letUpWarning:'禁止激活已激活的任务', letUpWarning:'禁止激活已激活的任务',
stopWarning:'禁止挂起未激活的测量任务', stopWarning:'禁止挂起未激活的测量任务',
weekPlan:'周计划',
monthPlan:'月计划',
one:'星期一',
two:'星期二',
three:'星期三',
four:'星期四',
five:'星期五',
six:'星期六',
seven:'星期天',
}, },
perfThreshold:{ perfThreshold:{
thresholdValue:'门限值', thresholdValue:'门限值',

View File

@@ -237,7 +237,7 @@ let modalState: ModalStateType = reactive({
imsi: '', imsi: '',
ambr: 'def_ambr', ambr: 'def_ambr',
nssai: 'def_nssai', nssai: 'def_nssai',
rat: '', rat: '0',
arfb: 'def_arfb', arfb: 'def_arfb',
sar: 'def_sar', sar: 'def_sar',
cn: '', cn: '',
@@ -260,7 +260,7 @@ let modalState: ModalStateType = reactive({
imsi: '', imsi: '',
ambr: 'def_ambr', ambr: 'def_ambr',
nssai: 'def_nssai', nssai: 'def_nssai',
rat: '', rat: '0',
arfb: 'def_arfb', arfb: 'def_arfb',
sar: 'def_sar', sar: 'def_sar',
cn: '', cn: '',

View File

@@ -39,18 +39,18 @@ const taskManageOption = reactive({
], ],
timeSlotAll: [{ label: '', value: '' }], timeSlotAll: [{ label: '', value: '' }],
bigPlan: [ bigPlan: [
{ label: '周测量计划', value: 'Weekly' }, { label: t('views.perfManage.taskManage.weekPlan'), value: 'Weekly' },
{ label: '月测量计划', value: 'Monthly' }, { label: t('views.perfManage.taskManage.monthPlan'), value: 'Monthly' },
], ],
smPlan: { smPlan: {
Weekly: [ Weekly: [
{ label: '星期一', value: '1' }, { label: t('views.perfManage.taskManage.one'), value: '1' },
{ label: '星期二', value: '2' }, { label: t('views.perfManage.taskManage.two'), value: '2' },
{ label: '星期三', value: '3' }, { label: t('views.perfManage.taskManage.three'), value: '3' },
{ label: '星期四', value: '4' }, { label: t('views.perfManage.taskManage.four'), value: '4' },
{ label: '星期五', value: '5' }, { label: t('views.perfManage.taskManage.five'), value: '5' },
{ label: '星期六', value: '6' }, { label: t('views.perfManage.taskManage.six'), value: '6' },
{ label: '星期天', value: '7' }, { label: t('views.perfManage.taskManage.seven'), value: '7' },
], ],
Monthly: generateOptions(1, 30), Monthly: generateOptions(1, 30),
}, },