From 7e189eb358905896b2475b07b06cf4efb5b8962c Mon Sep 17 00:00:00 2001 From: zoujiandong <10130823232@qq.com> Date: Mon, 18 Aug 2025 17:44:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=9F=E5=9B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/case/caseplatform-case-list.vue | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) 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) { } +