转账授权无法跳转问题修改

This commit is contained in:
jiawei
2023-03-01 18:01:52 +08:00
parent 1505c9e5d0
commit b74dc7c627

View File

@@ -265,9 +265,9 @@ export default {
let that = this let that = this
if (that.signVal == '0' || that.signVal == '2') { if (that.signVal == '0' || that.signVal == '2') {
// 查看保险条款是否有,如果没有的话走原有逻辑 // 查看保险条款是否有,如果没有的话走原有逻辑
let isHasClauses = this.appntSign.some(item => { let isHasClauses = Array.isArray(this.appntSign)?this.appntSign.some(item => {
return item.documentCode == '13' && (item.documentStatus == '0' || item.documentStatus == '2') return item.documentCode == '13' && (item.documentStatus == '0' || item.documentStatus == '2')
}) }):false
if(isHasClauses) { if(isHasClauses) {
that.appntSign.map(item => { that.appntSign.map(item => {
if (item.documentCode == '1') { if (item.documentCode == '1') {
@@ -344,9 +344,9 @@ export default {
message: '加载中……' message: '加载中……'
}) })
// 查看保险条款是否有,如果没有的话走原有逻辑 // 查看保险条款是否有,如果没有的话走原有逻辑
let isHasClauses = this.insuredSign.some(item => { let isHasClauses = Array.isArray(this.insuredSign)? this.insuredSign.some(item => {
return item.documentCode == '13' && (item.documentStatus == '0' || item.documentStatus == '2') return item.documentCode == '13' && (item.documentStatus == '0' || item.documentStatus == '2')
}) }):false
if(isHasClauses) { if(isHasClauses) {
that.insuredSign.map(item => { that.insuredSign.map(item => {
if (item.documentCode == '1') { if (item.documentCode == '1') {