diff --git a/src/views/business/case/caseplatform-case-list.vue b/src/views/business/case/caseplatform-case-list.vue
index 3feee96..947705f 100644
--- a/src/views/business/case/caseplatform-case-list.vue
+++ b/src/views/business/case/caseplatform-case-list.vue
@@ -155,7 +155,7 @@
审核
- 原因
+ 原因
@@ -183,7 +183,11 @@
- {{ show_reason }}
+
+
{{ item.createTime }}
+
+
{{ item.reason }}
+
@@ -209,13 +213,15 @@ import { employeeApi } from '/@/api/system/employee/employee-api';
// ---------------------------- 表格列 ----------------------------
const dateFormat = 'YYYY-MM-DD HH:mm:ss'
const cancelExamineVisible = ref(false)
-const showReasonVisible = ref(false)
+const showReasonVisible = ref(false);
+const resonList=ref([])
const disabledDate=(current)=>{
return current && current > dayjs().endOf('day');
}
-function showReason(reason) {
+function showReason(reason,list) {
showReasonVisible.value = true
- show_reason.value = reason
+ show_reason.value = reason;
+ resonList.value=list
}
const show_reason = ref()
@@ -536,3 +542,11 @@ function showForm(data) {
}
+