From bab6fd7a655b8c79de5a6a9360350f41bfb81e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Fri, 8 Dec 2023 11:18:06 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=BE=81=E6=B1=82=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StandardConsultationProcess.vue | 38 +++++++++++++++++-- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue b/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue index dc018d6..2b14acc 100644 --- a/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue +++ b/src/views/workCenter/standardConsultation/StandardConsultationProcess.vue @@ -129,6 +129,9 @@ form-is-depend="isAdopt" :extra-form="extraForm" :all-disabled="true"> + @@ -193,6 +196,15 @@ + + +
{{ contentDetail }}
+
@@ -278,21 +290,21 @@ export default { align: 'center', width: 180, dataIndex: 'modificationBefore', - scopedSlots: { customRender: 'text' } + scopedSlots: { customRender: 'content' } }, { // 修改后 title: this.$t('standardConsultation.afterModification'), align: 'center', width: 180, dataIndex: 'modificationAfter', - scopedSlots: { customRender: 'text' } + scopedSlots: { customRender: 'content' } }, { // 修改理由 title: this.$t('standardConsultation.reasonForModification'), align: 'center', width: 180, dataIndex: 'modificationReason', - scopedSlots: { customRender: 'text' } + scopedSlots: { customRender: 'content' } } ] }, @@ -403,7 +415,9 @@ export default { } ] } - } + }, + showContentDetail: false, + contentDetail: null } }, computed: { @@ -638,6 +652,10 @@ export default { timer = null this.$router.go(-1) }, 700) + }, + handleShowContentDetail (text) { + this.contentDetail = text + this.showContentDetail = true } } } @@ -645,5 +663,17 @@ export default {