mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-08 04:44:29 +00:00
Merge branch 'master' of https://github.com/silenty4ng/k5web
This commit is contained in:
commit
d1e7f12b30
3 changed files with 4 additions and 3 deletions
|
@ -22,7 +22,7 @@ class Updater {
|
|||
};
|
||||
|
||||
async getHtml() {
|
||||
const html = await fetch('/?v=' + (new Date()).getTime() ).then(res => res.text());//读取index html
|
||||
const html = await fetch('/').then(res => res.text());//读取index html
|
||||
return html
|
||||
};
|
||||
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
<a-typography-text>◆ 使用应第一时间<t-link theme="primary" href="/#/tool/backup">备份</t-link>配置及校准数据。</a-typography-text><br>
|
||||
<a-typography-text>◆ 除“固件升级”功能手台应处于刷机模式点击更新按钮选择设备更新,其余功能手台均需要在正常模式连接。</a-typography-text><br>
|
||||
<a-typography-text>◆ 萝卜(LOSEHU)固件相关问题请移步:<t-link theme="primary" href="https://github.com/losehu/uv-k5-firmware-custom" target="_blank">https://github.com/losehu/uv-k5-firmware-custom</t-link> 。</a-typography-text><br>
|
||||
<a-typography-text>◆ K5Web 使用视频教程(BG7QJV):<t-link theme="primary" href="https://www.douyin.com/video/7378314511419313458" target="_blank">https://www.douyin.com/video/7378314511419313458</t-link> 。</a-typography-text>
|
||||
<a-typography-text>◆ K5Web 使用视频教程(BG7QJV):<t-link theme="primary" href="https://www.douyin.com/video/7378314511419313458" target="_blank">https://www.douyin.com/video/7378314511419313458</t-link> 。</a-typography-text><br>
|
||||
<a-typography-text>◆ K5Web 使用视频教程(BG3ODZ):<t-link theme="primary" href="https://www.bilibili.com/video/BV1Q4421D75x" target="_blank">https://www.bilibili.com/video/BV1Q4421D75x</t-link> 。</a-typography-text>
|
||||
</div>
|
||||
<div>
|
||||
<a-typography-title :heading="5">希望工程1+1助学行动:</a-typography-title>
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
clearable: true
|
||||
},
|
||||
onEdited: (context: any) => {
|
||||
context.newRowData.mdcid = context.newRowData.mdcid ? context.newRowData.mdcid : undefined
|
||||
context.newRowData.mdcid = context.newRowData.mdcid ? context.newRowData.mdcid.toLowerCase() : undefined
|
||||
const newData = [...cstate.renderData];
|
||||
newData.splice((cstate.nowPage - 1) * cstate.pageSize + context.rowIndex, 1, context.newRowData);
|
||||
cstate.renderData = newData;
|
||||
|
|
Loading…
Reference in a new issue