修复应用删除问题
This commit is contained in:
parent
78990c6094
commit
89fc3ecf74
@ -115,14 +115,14 @@ const doDeleteApp = async (app) => {
|
|||||||
try {
|
try {
|
||||||
deleteAppLoading.value = true;
|
deleteAppLoading.value = true;
|
||||||
await API.mpaas.AppDelete(app.id);
|
await API.mpaas.AppDelete(app.id);
|
||||||
fetchAppList();
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error deleting app:', error);
|
console.error('Error deleting app:', error);
|
||||||
} finally {
|
} finally {
|
||||||
deleteAppLoading.value = false;
|
deleteAppLoading.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const deleteApp = (app) => {
|
const deleteApp = () => {
|
||||||
doDeleteApp(app);
|
fetchAppList();
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user