From a80600565f58f870fcaac6fd96197edb3f6233d1 Mon Sep 17 00:00:00 2001 From: wsm <2746563060@侵权。> Date: Tue, 26 May 2026 10:55:14 +0800 Subject: [PATCH] =?UTF-8?q?feat(xispeak):=20=E5=8F=8D=E9=A6=88=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E5=BC=B9=E7=AA=97=E5=A2=9E=E5=8A=A0=E7=BA=AA=E6=A3=80?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=92=8C=E9=99=84=E4=BB=B6=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 弹窗加宽至 1300px - 新增检查情况、监督意见、措施数量纪检字段列 - 新增附件列支持查看回形针组件 - 样式优化 Co-Authored-By: Claude Opus 4.7 --- .../components/BgXiSpeakFeedbackViewModal.vue | 83 ++++++++++++++++++- 1 file changed, 81 insertions(+), 2 deletions(-) diff --git a/src/views/bg/xispeak/components/BgXiSpeakFeedbackViewModal.vue b/src/views/bg/xispeak/components/BgXiSpeakFeedbackViewModal.vue index d83ca47..0052f2c 100644 --- a/src/views/bg/xispeak/components/BgXiSpeakFeedbackViewModal.vue +++ b/src/views/bg/xispeak/components/BgXiSpeakFeedbackViewModal.vue @@ -1,7 +1,7 @@ @@ -29,6 +42,7 @@ import { BasicTable } from '/@/components/Table'; import type { BasicColumn } from '/@/components/Table'; import JModal from '/@/components/Modal/src/JModal/JModal.vue'; + import SUploadFile from '/@/components/semri/fileComponent/SUploadFile.vue'; import { bgXiSpeakFeedbackList } from '../BgXiSpeak.api'; const visible = ref(false); @@ -67,6 +81,33 @@ align: 'center', width: 120, }, + { + title: '检查情况(纪检)', + dataIndex: 'checkStatus', + align: 'left', + ellipsis: true, + width: 140, + }, + { + title: '监督意见(纪检)', + dataIndex: 'inspectionAdvice', + align: 'left', + ellipsis: true, + width: 140, + }, + { + title: '措施数量(纪检)', + dataIndex: 'measureNum', + align: 'center', + width: 100, + }, + { + title: '附件', + dataIndex: 'id', + key: 'attachments', + align: 'left', + width: 280, + }, ]; const title = computed(() => { @@ -98,3 +139,41 @@ defineExpose({ open }); + +