This commit is contained in:
2025-06-17 21:34:59 +08:00
parent 00a055685e
commit 6256cda8bc
17 changed files with 397 additions and 121 deletions

View File

@@ -23,8 +23,8 @@ const status = computed({
},
})
const change = async () => {
const {msg} = await api(id);
const change = async (e) => {
const {msg} = await api(id, Number(e));
Message.success(msg);
emits('change');
}