From b2ee7fafacf7ac31536749c0bfb82bf3d153acc5 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 12 May 2023 11:03:42 +0800 Subject: [PATCH] 402 --- src/project/wuxi/AppPhotoReport/PhotoDetail.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/project/wuxi/AppPhotoReport/PhotoDetail.vue b/src/project/wuxi/AppPhotoReport/PhotoDetail.vue index e64c480..8264135 100644 --- a/src/project/wuxi/AppPhotoReport/PhotoDetail.vue +++ b/src/project/wuxi/AppPhotoReport/PhotoDetail.vue @@ -47,8 +47,8 @@ - - + +
去评价
@@ -64,6 +64,7 @@ export default { currentTab: 0, evaluation: {}, id: '', + showEvaluation: false // tabList: [{name:'办理进度'},{name:'我的评价'}] } }, @@ -92,11 +93,11 @@ export default { } }, onShow() { + this.showEvaluation = false this.getInfo() }, onLoad(query) { this.id = query.id - this.getInfo() this.$dict.load(['clapEventStatus', 'residentEventSource']) }, methods: { @@ -111,6 +112,7 @@ export default { if (res.data.eventStatus > 1) { this.result = res.data.processList[0] } + this.showEvaluation = true } }).finally(() => this.$hideLoading()) },