fix : 细节优化

This commit is contained in:
2024-03-25 22:39:25 +08:00
parent f646c13e9d
commit 5d31b52e67
23 changed files with 98 additions and 51 deletions

View File

@@ -148,6 +148,8 @@ const getList = async () => {
list.value = res.data.rows
total.value = res.data.total
loading.value = false
}else {
ElMessage.error(res.msg);
}
})
}

View File

@@ -78,6 +78,8 @@ const getList = async () => {
list.value = res.data.rows
total.value = res.data.total
loading.value = false
}else {
ElMessage.error(res.msg);
}
})
}

View File

@@ -247,6 +247,8 @@ const getList = async () => {
list.value = res.data.rows;
total.value = res.data.total;
loading.value = false;
}else {
ElMessage.error(res.msg);
}
});
};