diff --git a/src/components/contractIntegration/index.vue b/src/components/contractIntegration/index.vue
index f736473..f7c3c6e 100644
--- a/src/components/contractIntegration/index.vue
+++ b/src/components/contractIntegration/index.vue
@@ -166,7 +166,8 @@
工作名称
- {{ shOaView.title? shOaView.title : '-' }}
+ {{ shOaView.title? shOaView.title : '-' }}查看
+
申请人
@@ -212,7 +213,7 @@
流程名称
- {{ flow.flow_title || '-' }}
+ {{ flow.flow_title || '-' }}查看
发起日期
@@ -288,7 +289,7 @@
流程名称
- {{ flow.flow_title || '-' }}
+ {{ flow.flow_title || '-' }}查看
发起日期
@@ -355,7 +356,7 @@
流程名称
- {{ paymentMeetingFlow(roundIndex).title || '-' }}
+ {{ paymentMeetingFlow(roundIndex).title || '-' }}查看
发起日期
@@ -430,7 +431,7 @@
流程名称
- {{ flow.flow_title || '-' }}
+ {{ flow.flow_title || '-' }}查看
发起时间
@@ -487,10 +488,19 @@
-
-
-
-
+
+
+
+
@@ -671,9 +681,16 @@ export default {
// 重置组件状态
resetComponent() {
this.id = ''
+ this.shOaView = null
this.detail = null
this.signPlan = []
this.loading = false
+ this.showModal = false
+ this.codeUri = ''
+ this.fundLogs = []
+ this.procurementFlows = []
+ this.contractApprovalFlows = []
+ this.paymentApprovalFlows = []
},
// 根据URL参数重置并加载数据
@@ -890,6 +907,11 @@ export default {
if (!round) return '待处理'
return round.status === 1 ? '已办结' : '待处理'
},
+ // 查看流程
+ viewFlow(id) {
+ this.codeUri = `${process.env.VUE_APP_OUT_URL}/#/flow/detail?auth_token=${window.encodeURIComponent(getToken())}&isSinglePage=1&flow_id=${id}`
+ this.showModal = true
+ },
// 预览附件(参考 biddingUpload.vue 的实现)
open(url) {
try {