|
@@ -204,7 +204,7 @@ const replySave = () => {
|
|
|
userName: reportingReplyStatus.value.author || '',
|
|
|
},
|
|
|
}).then(() => {
|
|
|
-
|
|
|
+ listTable.value[reportingDetailData.value.$index].replyFlag = 1;
|
|
|
});
|
|
|
};
|
|
|
|
|
@@ -214,15 +214,17 @@ const confirm = item => {
|
|
|
type: 'success',
|
|
|
message: '审核通过',
|
|
|
});
|
|
|
+ listTable.value[item.$index].status = 1;
|
|
|
});
|
|
|
};
|
|
|
|
|
|
const cancel = item => {
|
|
|
- reportingShenhe({ data: { id: item.row.id, status: 2 } }).then(() => {
|
|
|
+ reportingShenhe({ data: { id: item.row.id, status: -1 } }).then(() => {
|
|
|
ElMessage({
|
|
|
type: 'success',
|
|
|
message: '拒绝通过',
|
|
|
});
|
|
|
+ listTable.value[item.$index].status = -1;
|
|
|
});
|
|
|
};
|
|
|
|