mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-09 13:24:38 +00:00
update
This commit is contained in:
parent
3a645e10a2
commit
94fdcdc78c
1 changed files with 6 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
||||||
<Breadcrumb :items="['小工具', '备份/还原']" />
|
<Breadcrumb :items="['小工具', '备份/还原']" />
|
||||||
<a-row :gutter="20" align="stretch">
|
<a-row :gutter="20" align="stretch">
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-card class="general-card" title="备份/还原">
|
<a-card class="general-card" title="备份/还原" @click="()=>{state.showHide += 1}">
|
||||||
<a-tabs default-active-key="1">
|
<a-tabs default-active-key="1">
|
||||||
<a-tab-pane key="1" title="快捷备份">
|
<a-tab-pane key="1" title="快捷备份">
|
||||||
<a-space>
|
<a-space>
|
||||||
|
@ -16,6 +16,7 @@
|
||||||
<a-tab-pane key="2" title="完整备份">
|
<a-tab-pane key="2" title="完整备份">
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-button type="primary" @click="backup">备份</a-button>
|
<a-button type="primary" @click="backup">备份</a-button>
|
||||||
|
<a-input v-show="state.showHide >= 5" v-model="state.startInfo" />
|
||||||
<a-button @click="restore">恢复</a-button>
|
<a-button @click="restore">恢复</a-button>
|
||||||
<a-select v-model="state.eepromType" :style="{width:'320px'}" placeholder="选择EEPROM大小">
|
<a-select v-model="state.eepromType" :style="{width:'320px'}" placeholder="选择EEPROM大小">
|
||||||
<a-option value="1">8KB(64Kbit)</a-option>
|
<a-option value="1">8KB(64Kbit)</a-option>
|
||||||
|
@ -44,7 +45,9 @@ const appStore = useAppStore();
|
||||||
|
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
status: "点击备份按钮将生成 EEPROM 备份文件<br/><br/>",
|
status: "点击备份按钮将生成 EEPROM 备份文件<br/><br/>",
|
||||||
eepromType: ""
|
eepromType: "",
|
||||||
|
showHide: 0,
|
||||||
|
startInfo: "0x00"
|
||||||
})
|
})
|
||||||
|
|
||||||
const checkEeprom = async () => {
|
const checkEeprom = async () => {
|
||||||
|
@ -148,7 +151,7 @@ const backup = async() => {
|
||||||
|
|
||||||
const restore = async() => {
|
const restore = async() => {
|
||||||
if(appStore.connectState != true){alert('请先连接手台!'); return;};
|
if(appStore.connectState != true){alert('请先连接手台!'); return;};
|
||||||
await restoreRange()
|
await restoreRange(parseInt(state.startInfo))
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue