feat: 完善离线问题

This commit is contained in:
橙子
2023-12-19 16:52:50 +08:00
parent 7766a7b239
commit 6f65ad5255
6 changed files with 6032 additions and 14 deletions

View File

@@ -294,12 +294,7 @@ function cancel() {
}
/** 表单重置 */
function reset() {
form.value = {
id: undefined,
title: undefined,
isDeleted: false,
remark: undefined,
};
form.value = {};
proxy.resetForm("dataRef");
}
/** 搜索按钮操作 */

View File

@@ -211,6 +211,8 @@ function cancel() {
/** 表单重置 */
function reset() {
proxy.resetForm("dataRef");
form.value = {
};
}
/** 搜索按钮操作 */
function handleQuery() {
@@ -228,6 +230,7 @@ function handleAdd() {
reset();
open.value = true;
title.value = "添加板块";
}
/** 多选框选中数据 */
function handleSelectionChange(selection) {