mirror of
https://github.com/silenty4ng/k5web
synced 2025-04-04 15:15:02 +00:00
add write channel confirm
This commit is contained in:
parent
42d5125ec3
commit
67c3fd5d52
3 changed files with 15 additions and 2 deletions
|
@ -183,6 +183,8 @@ export default {
|
||||||
'sat.selfSatInfo': 'My satellite parameters',
|
'sat.selfSatInfo': 'My satellite parameters',
|
||||||
'sat.addSelfSat': 'Add my satellite',
|
'sat.addSelfSat': 'Add my satellite',
|
||||||
'chat': 'Radio Chat',
|
'chat': 'Radio Chat',
|
||||||
|
'menu.cps.writeNoticeTitle': 'Confirm',
|
||||||
|
'menu.cps.writeNoticeContent': "Confirmation to write the channel shown on the web page to the device? (will override the device's current channel configuration)",
|
||||||
...localeSettings,
|
...localeSettings,
|
||||||
...localeMessageBox,
|
...localeMessageBox,
|
||||||
...localeLogin,
|
...localeLogin,
|
||||||
|
|
|
@ -183,6 +183,8 @@ export default {
|
||||||
'sat.selfSatInfo': '我的卫星参数',
|
'sat.selfSatInfo': '我的卫星参数',
|
||||||
'sat.addSelfSat': '添加我的卫星',
|
'sat.addSelfSat': '添加我的卫星',
|
||||||
'chat': '无线电聊天',
|
'chat': '无线电聊天',
|
||||||
|
'menu.cps.writeNoticeTitle': '确认',
|
||||||
|
'menu.cps.writeNoticeContent': '确认将网页显示的信道写入设备吗?(将覆盖设备当前信道配置)',
|
||||||
...localeSettings,
|
...localeSettings,
|
||||||
...localeMessageBox,
|
...localeMessageBox,
|
||||||
...localeLogin,
|
...localeLogin,
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<a-modal v-model:visible="istate.showNotice" @ok="writeChannel" @cancel="istate.showNotice = false">
|
||||||
|
<template #title>
|
||||||
|
{{ $t('menu.cps.writeNoticeTitle') }}
|
||||||
|
</template>
|
||||||
|
<div>
|
||||||
|
{{ $t('menu.cps.writeNoticeContent') }}
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
<Breadcrumb :items="[$t('menu.dashboard'), $t('menu.cps.channel')]" />
|
<Breadcrumb :items="[$t('menu.dashboard'), $t('menu.cps.channel')]" />
|
||||||
<a-card class="general-card">
|
<a-card class="general-card">
|
||||||
<template #title>
|
<template #title>
|
||||||
|
@ -14,7 +22,7 @@
|
||||||
</template>
|
</template>
|
||||||
{{ $t('cps.onDeviceRead') }}
|
{{ $t('cps.onDeviceRead') }}
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button @click="writeChannel">
|
<a-button @click="istate.showNotice = true">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-plus />
|
<icon-plus />
|
||||||
</template>
|
</template>
|
||||||
|
@ -158,7 +166,8 @@
|
||||||
})
|
})
|
||||||
|
|
||||||
const istate = reactive({
|
const istate = reactive({
|
||||||
showHide: 0
|
showHide: 0,
|
||||||
|
showNotice: false
|
||||||
})
|
})
|
||||||
|
|
||||||
const onDragSort = (params: any) => {
|
const onDragSort = (params: any) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue