diff --git a/src/views/YB_APP/renewalDetail.vue b/src/views/YB_APP/renewalDetail.vue index 8c0aefac3..a6510bff1 100644 --- a/src/views/YB_APP/renewalDetail.vue +++ b/src/views/YB_APP/renewalDetail.vue @@ -104,13 +104,16 @@ export default { this.show = true // 显示确认对话框 }, contact() { - const a = document.createElement('a') - a.href = `tel:'${this.ybOrderDTOList.appntPhone}'` - a.click() - this.show = false + EWebBridge.webCallAppInJs('callSystem', { + system: 'tel', + number: this.ybOrderDTOList.appntPhone + }) }, callPhone(phoneNumber) { - window.location.href = 'tel://' + phoneNumber + EWebBridge.webCallAppInJs('callSystem', { + system: 'tel', + number: phoneNumber + }) }, getYBRenewalInfo() { // let params = { diff --git a/src/views/ebiz/proposal/ProposalInfo.vue b/src/views/ebiz/proposal/ProposalInfo.vue index 216fcba85..5337ce760 100644 --- a/src/views/ebiz/proposal/ProposalInfo.vue +++ b/src/views/ebiz/proposal/ProposalInfo.vue @@ -242,7 +242,7 @@ :value.sync="pageShowInfo.showInsuredDTO.tap" >
+
-
+
+