[FIX]【自助入司优化】签名-申请人签名完成后,app端担保人签名页面跳转问题

This commit is contained in:
yuweiqi
2020-05-21 15:53:10 +08:00
parent edca0a216d
commit 693b5c4148
3 changed files with 12 additions and 7 deletions

View File

@@ -144,9 +144,6 @@ export default {
this.agreementQuery() this.agreementQuery()
} }
}, },
mounted() {
this.timeOut()
},
methods: { methods: {
//获取签署协议人信息 //获取签署协议人信息
agreementQuery() { agreementQuery() {

View File

@@ -120,7 +120,7 @@ export default {
} }
if (this.$route.query.dialogFlag) { if (this.$route.query.dialogFlag) {
Dialog.alert({ Dialog.alert({
message: '签名成功,请点击“确认”按钮并联系申请人进行后续操作!' message: '签名成功,请联系申请人进行后续操作!'
}).then(() => {}) }).then(() => {})
} }
} else { } else {

View File

@@ -1046,6 +1046,13 @@ export function getAgreementNextPagePath(signList, code, appntSign) {
return nextPagePath return nextPagePath
function go(list) { function go(list) {
//此方法内剔除当前页面是否签署 //此方法内剔除当前页面是否签署
if (code == '1') {
if (appntSign.signStateD == '0') {
nextPagePath = list.length > 1 ? list[1].path : 'signContract'
} else {
nextPagePath = list.length > 0 ? list[0].path : 'signContract'
}
} else {
if (appntSign.signState == '0') { if (appntSign.signState == '0') {
nextPagePath = list.length > 1 ? list[1].path : 'signContract' nextPagePath = list.length > 1 ? list[1].path : 'signContract'
} else { } else {
@@ -1053,3 +1060,4 @@ export function getAgreementNextPagePath(signList, code, appntSign) {
} }
} }
} }
}