This commit is contained in:
guochunsi
2026-01-08 19:00:25 +08:00
parent 8a1faabd70
commit 98fcd368f9
45 changed files with 1818 additions and 2354 deletions

View File

@@ -292,7 +292,7 @@ const handleDel = (row: any) => {
message.success('删除成功')
getDataList(false) // 删除后保持当前页
} catch (error: any) {
message.error(error?.msg || '删除失败')
message.error(error.msg)
}
}).catch(() => {
// 用户取消
@@ -317,7 +317,7 @@ const handleSubmit = async () => {
dialogVisible.value = false
getDataList(false) // 提交后保持当前页
} catch (error: any) {
message.error(error?.msg || '操作失败')
message.error(error.msg)
} finally {
submitLoading.value = false
}