mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 11:46:44 +08:00
提交更改bug
This commit is contained in:
@@ -176,7 +176,7 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
that.pdfUrl = encodeURIComponent(config.imgDomain + `/returnDirectStream?imgPath=${that.tipsPolicyUrl}`)
|
that.pdfUrl = encodeURIComponent(config.imgDomain + `/returnDirectStream?imgPath=${that.tipsPolicyUrl}`)
|
||||||
console.log(" that.pdfUrl", that.pdfUrl)
|
console.log(' that.pdfUrl', that.pdfUrl)
|
||||||
if (that.isWeixin) {
|
if (that.isWeixin) {
|
||||||
if (res.orderDTO.ebizSignDTOS.length > 1) {
|
if (res.orderDTO.ebizSignDTOS.length > 1) {
|
||||||
if (that.appntSign.documentStatus == '3') {
|
if (that.appntSign.documentStatus == '3') {
|
||||||
@@ -215,7 +215,7 @@ export default {
|
|||||||
if (this.detailJump != '1') {
|
if (this.detailJump != '1') {
|
||||||
if (this.relationToAppnt == '1') {
|
if (this.relationToAppnt == '1') {
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '签字日期', '-150')
|
this.toAirSign('1', '签字日期', '-150', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -239,7 +239,7 @@ export default {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '签字日期', '-150')
|
this.toAirSign('1', '签字日期', '-150', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -294,7 +294,7 @@ export default {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '签字日期', '-150')
|
this.toAirSign('1', '签字日期', '-150', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -320,11 +320,11 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toAirSign(status, keyword, offset) {
|
toAirSign(status, keyword, offset, originStatus) {
|
||||||
localStorage.setItem(
|
localStorage.setItem(
|
||||||
'signInfo',
|
'signInfo',
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
originStatus: '1',
|
originStatus: originStatus,
|
||||||
idNo: this.saleInsuredInfo.idNo,
|
idNo: this.saleInsuredInfo.idNo,
|
||||||
name: this.saleInsuredInfo.name,
|
name: this.saleInsuredInfo.name,
|
||||||
type: this.saleInsuredInfo.idType,
|
type: this.saleInsuredInfo.idType,
|
||||||
|
|||||||
@@ -956,7 +956,12 @@ export default {
|
|||||||
})
|
})
|
||||||
let { customerName, customerSex } = data
|
let { customerName, customerSex } = data
|
||||||
this.userInfo.name = customerName //用户名
|
this.userInfo.name = customerName //用户名
|
||||||
this.userInfo.sex = String(customerSex) //性别
|
if (customerSex == null) {
|
||||||
|
this.userInfo.sex = 's'
|
||||||
|
} else {
|
||||||
|
this.userInfo.sex = String(customerSex) //性别s
|
||||||
|
}
|
||||||
|
|
||||||
this.userInfo.nativeplace = data.country //国家地区
|
this.userInfo.nativeplace = data.country //国家地区
|
||||||
this.userInfo.birthday = data.birthday //出生日期
|
this.userInfo.birthday = data.birthday //出生日期
|
||||||
this.userInfo.idType = data.customerIdType //证件类型
|
this.userInfo.idType = data.customerIdType //证件类型
|
||||||
|
|||||||
@@ -210,7 +210,7 @@ export default {
|
|||||||
if (this.detailJump != '1') {
|
if (this.detailJump != '1') {
|
||||||
if (this.relationToAppnt == '1') {
|
if (this.relationToAppnt == '1') {
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '投保人签名', '5')
|
this.toAirSign('1', '投保人签名', '5', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -234,7 +234,7 @@ export default {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '投保人签名', '5')
|
this.toAirSign('1', '投保人签名', '5', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -289,7 +289,7 @@ export default {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
if (this.isWeixin) {
|
if (this.isWeixin) {
|
||||||
this.toAirSign('1', '投保人签名', '5')
|
this.toAirSign('1', '投保人签名', '5', '1')
|
||||||
} else {
|
} else {
|
||||||
EWebBridge.webCallAppInJs('ca_sign', {
|
EWebBridge.webCallAppInJs('ca_sign', {
|
||||||
//身份证号码
|
//身份证号码
|
||||||
@@ -315,10 +315,26 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toAirSign(status, keyword, offset) {
|
// toAirSign(status, keyword, offset) {
|
||||||
|
// localStorage.setItem(
|
||||||
|
// 'signInfo',
|
||||||
|
// JSON.stringify({
|
||||||
|
// idNo: this.saleInsuredInfo.idNo,
|
||||||
|
// name: this.saleInsuredInfo.name,
|
||||||
|
// type: this.saleInsuredInfo.idType,
|
||||||
|
// keyword: keyword,
|
||||||
|
// status: status,
|
||||||
|
// offset: offset,
|
||||||
|
// originUrl: location.href
|
||||||
|
// })
|
||||||
|
// )
|
||||||
|
// window.location.href = this.$mainUrl + '/sign/index.html'
|
||||||
|
// },
|
||||||
|
toAirSign(status, keyword, offset, originStatus) {
|
||||||
localStorage.setItem(
|
localStorage.setItem(
|
||||||
'signInfo',
|
'signInfo',
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
|
originStatus: originStatus,
|
||||||
idNo: this.saleInsuredInfo.idNo,
|
idNo: this.saleInsuredInfo.idNo,
|
||||||
name: this.saleInsuredInfo.name,
|
name: this.saleInsuredInfo.name,
|
||||||
type: this.saleInsuredInfo.idType,
|
type: this.saleInsuredInfo.idType,
|
||||||
|
|||||||
Reference in New Issue
Block a user