diff --git a/src/views/audit-detail/index.vue b/src/views/audit-detail/index.vue index ff557862858a28d966a896a37a4313bc1cf6a01c..6ae40737373ff3d387c0a39daef138978e330dfe 100644 --- a/src/views/audit-detail/index.vue +++ b/src/views/audit-detail/index.vue @@ -401,7 +401,7 @@ export default { } }) }, - //! checkStatus 合格-3 不合格-4 驳回修改-2 待审核-1 + //! 合格提交 checkStatus 合格-3 不合格-4 驳回修改-2 待审核-1 showDialog(val) { this.curBtn = val if (this.editStatus) { @@ -507,7 +507,7 @@ export default { this.loading = false this.onCancel() } else { - this.getUser(this.$route.query.id, () => { + this.getUser(this.$route.query.unionId, () => { this.loading = false this.onCancel() }) diff --git a/src/views/audit-qualitycontrol/index.vue b/src/views/audit-qualitycontrol/index.vue index badca4a8fdaf023de4a36abc294728f18bd64406..9287583b3876093395e8a0bd890d115b392854cb 100644 --- a/src/views/audit-qualitycontrol/index.vue +++ b/src/views/audit-qualitycontrol/index.vue @@ -64,21 +64,21 @@ export default { watch: { auditStatus(val) { sessionStorage.setItem("audit-status", val) - switch (this.type) { - case "1": - this.handleSearch() - break - } + // switch (this.type) { + // case "1": + // this.handleSearch() + // break + // } console.log("status", val) }, type(val) { console.log("type", val) sessionStorage.setItem("audit-type", val) - switch (val) { - case "1": - this.handleSearch() - break - } + // switch (val) { + // case "1": + // this.handleSearch() + // break + // } }, }, computed: { @@ -198,7 +198,7 @@ export default { this.auditStatus = sessionStorage.getItem("audit-status") || "0" this.type = sessionStorage.getItem("audit-type") || "0" } - this.handleSearch() + // this.handleSearch() this.handleClick() }, methods: {