style: 快速开站多语言翻译

This commit is contained in:
TsMask
2024-05-24 09:41:20 +08:00
parent 7c78eab431
commit f94b1ef44a
8 changed files with 335 additions and 255 deletions

View File

@@ -160,7 +160,7 @@ function fnGetList() {
function fnStepPrev() {
Modal.confirm({
title: t('common.tipTitle'),
content: '确认要放弃当前变更返回上一步吗?',
content: t('views.system.quickStart.stepPara5GStepPrev'),
onOk() {
fnToStepName('NeInfoConfig');
},
@@ -172,7 +172,7 @@ function fnStepNext(stepName: 'NeInfoSoftwareInstall') {
if (stepName === 'NeInfoSoftwareInstall') {
Modal.confirm({
title: t('common.tipTitle'),
content: '确认要下一步进行各网元安装吗?',
content: t('views.system.quickStart.stepPara5GStepNext'),
onOk() {
fnToStepName('NeInfoSoftwareInstall');
},
@@ -354,20 +354,23 @@ onMounted(() => {
<div class="ne-oper">
<a-space direction="horizontal" :size="18">
<a-button @click="fnStepPrev()"> 上一步 </a-button>
<a-button @click="fnStepPrev()">
{{ t('views.system.quickStart.stepPrev') }}
</a-button>
<a-button
type="primary"
ghost
:loading="state.confirmLoading"
@click="fnSave()"
>
保存信息
{{ t('views.system.quickStart.save') }}
</a-button>
<a-button
type="dashed"
type="primary"
@click="fnStepNext('NeInfoSoftwareInstall')"
:disabled="!state.saveFile"
>
下一步
{{ t('views.system.quickStart.stepNext') }}
</a-button>
</a-space>
</div>