国际化

This commit is contained in:
2025-08-27 11:16:49 +08:00
parent 6a1cac2d13
commit 497ba36cc1
25 changed files with 1487 additions and 724 deletions

View File

@@ -1,12 +1,13 @@
<template>
<el-dialog
class="config_dialog"
:class="{'enClass': $i18n.locale === 'en-us'}"
:title="$t('Configuration')"
:visible.sync="dialogVisible"
width="55%"
:before-close="handleClose">
<el-tabs v-model="activeName">
<el-tab-pane label="基础配置" name="first">
<el-tab-pane :label="$t('Basicconfiguration')" name="first">
<el-form :model="dataForm" ref="dataForm" :rules="dataRule" :label-width="$i18n.locale === 'en-us' ? '1.4rem' : '1.1rem'" size="mini">
<p class="tip">{{$t('Languageselection')}}</p>
<el-form-item :label="$t('Language')" prop="selectedLanguage">
@@ -20,14 +21,14 @@
</el-select>
</el-form-item>
<p class="tip">{{$t('Parameterconfiguration')}}</p>
<el-form-item label="服务IP" prop="serverIp">
<el-input placeholder="请输入服务IP" v-model="dataForm.serverIp" id="ip" @focus="show" data-layout="normal"></el-input>
<el-form-item :label="$t('ServiceIP')" prop="serverIp">
<el-input :placeholder="$t('PleaseServiceIP')" v-model="dataForm.serverIp" id="ip"></el-input>
</el-form-item>
<el-form-item :label="$t('SchedulingIP')" prop="ip">
<el-input :placeholder="$t('PleaseIP')" v-model="dataForm.ip" id="ip" @focus="show" data-layout="normal"></el-input>
<el-input :placeholder="$t('PleaseIP')" v-model="dataForm.ip" id="ip"></el-input>
</el-form-item>
<el-form-item label="WIFI" prop="wifi">
<el-input :placeholder="$t('PleaseWIFI')" v-model="dataForm.wifi" id="wifi" @focus="show" data-layout="normal"></el-input>
<el-input :placeholder="$t('PleaseWIFI')" v-model="dataForm.wifi" id="wifi"></el-input>
</el-form-item>
</el-form>
<el-row type="flex" justify="space-around" style="margin-top: .3rem">
@@ -35,18 +36,17 @@
<el-col :span="7"><button class="button_control" @click="dataFormSubmit"><p>{{$t('Save')}}</p></button></el-col>
</el-row>
</el-tab-pane>
<el-tab-pane label="关机重启" name="second">
<el-tab-pane :label="$t('Shutdownrestart')" name="second">
<el-row type="flex" justify="center" align="middle" class="tab_wraper">
<div class="reset" @click="toReboot"></div>
</el-row>
</el-tab-pane>
<el-tab-pane label="同步地图" name="third">
<el-tab-pane :label="$t('Synchronizemap')" name="third">
<el-row type="flex" justify="center" align="middle" class="tab_wraper">
<button class="button_control" @click="synchronizedMapConfirm"><p>同步地图</p></button>
<button class="button_control" @click="synchronizedMapConfirm"><p>{{ $t('Synchronizemap') }}</p></button>
</el-row>
</el-tab-pane>
</el-tabs>
<!-- <vue-touch-keyboard id="keyboard" :options="options" v-if="visible" :layout="layout" :cancel="hide" :accept="accept" :input="input" :next="next" /> -->
</el-dialog>
</template>
@@ -66,7 +66,7 @@ export default {
},
dataRule: {
serverIp: [
{ required: true, message: '服务IP不能为空', trigger: 'blur' }
{ required: true, message: this.$t('ServiceIPnotempty'), trigger: 'blur' }
],
ip: [
{ required: true, message: this.$t('Schedulingnotempty'), trigger: 'blur' }
@@ -79,14 +79,7 @@ export default {
{label: '中文', value: 'zh-cn'},
{label: 'English', value: 'en-us'}
// {label: 'Español', value: 'es'}
],
visible: false,
layout: 'normal',
input: null,
options: {
useKbEvents: false,
preventClickEvent: false
}
]
}
},
computed: {
@@ -112,23 +105,21 @@ export default {
},
exitUser () {
this.dialogVisible = false
this.visible = false
},
dataFormSubmit () {
this.dialogVisible = false
this.visible = false
this.$i18n.locale = this.dataForm.selectedLanguage
window.localStorage.setItem('locale', this.dataForm.selectedLanguage)
this.setServerUrl(this.dataForm.serverIp)
this.$emit('refreshWebsocket')
},
handleClose (done) {
this.visible = false
done()
},
toReboot () {
this.$confirm('是否确定关机重启?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
this.$confirm('是否确定关机重启?', this.$t('Prompt'), {
confirmButtonText: this.$t('Confirm'),
cancelButtonText: this.$t('Cancel'),
type: 'warning'
}).then(() => {
this._rebootVehicle()
@@ -164,9 +155,9 @@ export default {
a.click()
},
synchronizedMapConfirm () {
this.$confirm('是否确定同步地图?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
this.$confirm('是否确定同步地图?', this.$t('Prompt'), {
confirmButtonText: this.$t('Confirm'),
cancelButtonText: this.$t('Cancel'),
type: 'warning'
}).then(() => {
this._synchronizedMap()
@@ -193,40 +184,6 @@ export default {
this.$message.error(e)
this.loading.close()
}
},
show (e) {
// 关闭中文keyboard
let arr = document.querySelectorAll('.hg-theme-default')
arr.forEach((ele) => {
ele.style.visibility = 'hidden'
})
this.input = e.target
this.layout = e.target.dataset.layout
if (!this.visible) {
this.visible = true
}
},
hide () {
this.visible = false
},
accept () {
this.hide()
},
next () {
let inputs = document.querySelectorAll('input')
let found = false;
[].forEach.call(inputs, (item, i) => {
if (!found && item === this.input && i < inputs.length - 1 && this.input.dataset.next === '1') {
found = true
this.$nextTick(() => {
inputs[i + 1].focus()
})
}
})
if (!found) {
this.input.blur()
this.hide()
}
}
}
}
@@ -248,4 +205,7 @@ export default {
width .72rem
height .71rem
background center / 100% auto url(../../images/new/reset.png) no-repeat
.enClass
.el-tabs__item
font-size .2rem
</style>