feat:验收问题修复
This commit is contained in:
@@ -700,6 +700,7 @@ const local: any = {
|
||||
aiRoaming:'AI Roaming',
|
||||
passwordInvalid:'The password format is incorrect, please include uppercase and lowercase letters and symbols.',
|
||||
addSuccess:'Add success',
|
||||
meshtext:'If the IP Address of the Wireless Device is in different network segments from the Custom IP Address, the Wireless Device will use the default gateway IP address for the detection.'
|
||||
},
|
||||
headerbanner:{
|
||||
controller:'Controller Overview',
|
||||
|
||||
@@ -700,7 +700,7 @@ const local:any = {
|
||||
aiRoaming:'AI漫游',
|
||||
passwordInvalid:'密码格式不正确,请包含大小写字母和符号',
|
||||
addSuccess:'添加成功',
|
||||
|
||||
meshtext:'如果 Wireless Device 的 IP 地址与自定义 IP 地址位于不同的网段,则 Wireless Device 将使用默认网关 IP 地址进行检测'
|
||||
},
|
||||
headerbanner:{
|
||||
controller:'控制仪表盘',
|
||||
@@ -722,7 +722,7 @@ const local:any = {
|
||||
wired:'有线客户端',
|
||||
wireless:'无线客户端',
|
||||
guest:'无线访客',
|
||||
alert:'告警数',
|
||||
alert:'警报数',
|
||||
},
|
||||
bill:{
|
||||
username:'用户名',
|
||||
@@ -897,14 +897,14 @@ const local:any = {
|
||||
deleteSuccess: '删除成功'
|
||||
},
|
||||
alerts:{
|
||||
alerts:'告警',
|
||||
alerts:'警报',
|
||||
chosesite:'请选择站点',
|
||||
deletesuccess:'删除成功',
|
||||
deletefail:'删除失败',
|
||||
choserecord:'请选择需要操作的记录',
|
||||
deletetitle:'确认删除',
|
||||
deletebody:'条记录吗?',
|
||||
suredelete:'确定要删除该条告警记录吗?',
|
||||
suredelete:'确定要删除该条警报记录吗?',
|
||||
sure:'确定',
|
||||
cancel:'取消',
|
||||
unresolved:'未解决',
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
<!-- 新增套餐弹窗 -->
|
||||
<AModal
|
||||
v-model:open="showModal"
|
||||
:title="t('page.package.add')"
|
||||
:title="t('page.package.title')"
|
||||
@ok="handleOk"
|
||||
@cancel="handleCancel"
|
||||
width="600px"
|
||||
|
||||
@@ -6,7 +6,8 @@ import {
|
||||
SearchOutlined,
|
||||
PlusOutlined,
|
||||
EditOutlined,
|
||||
DeleteOutlined
|
||||
DeleteOutlined,
|
||||
InfoCircleOutlined
|
||||
} from '@ant-design/icons-vue';
|
||||
import { getDashboardSiteList, addSite, deleteSite, getSiteConfig, updateSite, getMeshConfig, updateMeshConfig, getRoamingConfig, updateRoamingConfig } from '@/service/api/auth';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
@@ -621,6 +622,9 @@ const handleUpdateSite = async () => {
|
||||
<AInput v-for="(part, idx) in gatewayIpParts" :key="idx" v-model:value="gatewayIpParts[idx]" maxlength="3" style="width: 48px; text-align: center; margin-right: 4px;" />
|
||||
<span v-if="idx < 3" v-for="idx in 3" :key="'dot'+idx">.</span>
|
||||
</div>
|
||||
<a-tooltip placement="topLeft" :title="t('page.carddata.meshtext')">
|
||||
<a-button type="ghost" color="blue"><InfoCircleOutlined /></a-button>
|
||||
</a-tooltip>
|
||||
</template>
|
||||
</AFormItem>
|
||||
<AFormItem v-if="editFormData.meshEnable" style="margin-left: 24px;">
|
||||
|
||||
Reference in New Issue
Block a user