Commit 7c2f99d1 authored by miaojiale's avatar miaojiale

1.随访列表接口优化

2.修复审核下一例bug
parent 7902f2ca
......@@ -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()
})
......
......@@ -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: {
......
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