chore: checked.value = false
This commit is contained in:
parent
476106165f
commit
b01ac1bca4
@ -123,6 +123,9 @@ async function handleUnlock() {
|
|||||||
const { userName } = records[0];
|
const { userName } = records[0];
|
||||||
await userUnlock(userName);
|
await userUnlock(userName);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
|
canUnlock.value = false;
|
||||||
|
tableApi.grid.clearCheckboxRow();
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -129,6 +129,7 @@ async function handleDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await operLogDelete(ids);
|
await operLogDelete(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -107,6 +107,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await clientRemove(ids);
|
await clientRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -118,6 +118,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await configRemove(ids);
|
await configRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -129,6 +129,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await dictDataRemove(ids);
|
await dictDataRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -128,6 +128,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await dictTypeRemove(ids);
|
await dictTypeRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -113,6 +113,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await noticeRemove(ids);
|
await noticeRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -116,6 +116,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await ossConfigRemove(ids);
|
await ossConfigRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -128,6 +128,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await postRemove(ids);
|
await postRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -136,6 +136,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await roleRemove(ids);
|
await roleRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -166,6 +166,7 @@ function handleMultiDelete() {
|
|||||||
onOk: async () => {
|
onOk: async () => {
|
||||||
await userRemove(ids);
|
await userRemove(ids);
|
||||||
await tableApi.query();
|
await tableApi.query();
|
||||||
|
checked.value = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user