This commit is contained in:
Silent YANG 2024-06-16 14:45:12 +08:00
commit d1e7f12b30
3 changed files with 4 additions and 3 deletions

View file

@ -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
};

View file

@ -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>

View file

@ -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;