mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 19:06:43 +08:00
转账授权无法跳转问题修改
This commit is contained in:
@@ -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') {
|
||||||
|
|||||||
Reference in New Issue
Block a user