update:更新bug

This commit is contained in:
2021-09-18 11:14:57 +08:00
parent fa99230f22
commit 4ba774597a
3 changed files with 10 additions and 9 deletions

View File

@@ -35,6 +35,7 @@
class="proListBox shadow"
v-for="item in info.prjList"
>
<!-- 跳转项目详情 -->
<div @click="gotoDetail(item.prjId)">
<div class="proAreaBox">
<div class="proArea">{{ item.area }}</div>
@@ -120,7 +121,6 @@ export default {
name: "evaluteResult",
params: {
prjId: id,
type: this.type,
ticket: this.$route.params.ticket
}
});
@@ -128,7 +128,10 @@ export default {
// 协议结果页面
this.$router.push({
name: "reportAgreement",
params: { projectid: id, type: this.type, ticket: this.ticket }
params: {
prjId: id,
ticket: this.$route.params.ticket
}
});
}
}