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">
+
+ {{text }}
+
@@ -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 {