勘察审核完成

维修审核完成
This commit is contained in:
2024-10-15 10:48:18 +08:00
parent d09e144aaf
commit 84deb1f932
+2 -2
View File
@@ -207,7 +207,7 @@ const handleApprove = (item) => {
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
approve(item.id).then((res) => {
approve(item.id).then(() => {
item.status = 2;
ElMessage({
type: 'success',
@@ -224,7 +224,7 @@ const handleReject = (item) => {
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
reject(item.id).then((res) => {
reject(item.id).then(() => {
item.status = 1;
ElMessage({
type: 'success',