story#5360,web端拨打电话的确定事件弹框消失
This commit is contained in:
@ -193,7 +193,9 @@ export default {
|
||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||
showCancelButton:true,
|
||||
}).then(async() => {
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
if(!this.isWebFunc()){
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
}
|
||||
}).catch(() => {
|
||||
// on cancel
|
||||
});
|
||||
|
@ -110,7 +110,9 @@ export default {
|
||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||
showCancelButton:true,
|
||||
}).then(() => {
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
if(!this.isWebFunc()){
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
}
|
||||
}).catch(() => {
|
||||
// on cancel
|
||||
});
|
||||
|
Reference in New Issue
Block a user