Commit 7c2f99d1 authored by miaojiale's avatar miaojiale

1.随访列表接口优化

2.修复审核下一例bug
parent 7902f2ca
...@@ -401,7 +401,7 @@ export default { ...@@ -401,7 +401,7 @@ export default {
} }
}) })
}, },
//! checkStatus 合格-3 不合格-4 驳回修改-2 待审核-1 //! 合格提交 checkStatus 合格-3 不合格-4 驳回修改-2 待审核-1
showDialog(val) { showDialog(val) {
this.curBtn = val this.curBtn = val
if (this.editStatus) { if (this.editStatus) {
...@@ -507,7 +507,7 @@ export default { ...@@ -507,7 +507,7 @@ export default {
this.loading = false this.loading = false
this.onCancel() this.onCancel()
} else { } else {
this.getUser(this.$route.query.id, () => { this.getUser(this.$route.query.unionId, () => {
this.loading = false this.loading = false
this.onCancel() this.onCancel()
}) })
......
...@@ -64,21 +64,21 @@ export default { ...@@ -64,21 +64,21 @@ export default {
watch: { watch: {
auditStatus(val) { auditStatus(val) {
sessionStorage.setItem("audit-status", val) sessionStorage.setItem("audit-status", val)
switch (this.type) { // switch (this.type) {
case "1": // case "1":
this.handleSearch() // this.handleSearch()
break // break
} // }
console.log("status", val) console.log("status", val)
}, },
type(val) { type(val) {
console.log("type", val) console.log("type", val)
sessionStorage.setItem("audit-type", val) sessionStorage.setItem("audit-type", val)
switch (val) { // switch (val) {
case "1": // case "1":
this.handleSearch() // this.handleSearch()
break // break
} // }
}, },
}, },
computed: { computed: {
...@@ -198,7 +198,7 @@ export default { ...@@ -198,7 +198,7 @@ export default {
this.auditStatus = sessionStorage.getItem("audit-status") || "0" this.auditStatus = sessionStorage.getItem("audit-status") || "0"
this.type = sessionStorage.getItem("audit-type") || "0" this.type = sessionStorage.getItem("audit-type") || "0"
} }
this.handleSearch() // this.handleSearch()
this.handleClick() this.handleClick()
}, },
methods: { methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment