story#5360,web端拨打电话改为确定

This commit is contained in:
2025-04-16 16:48:38 +08:00
parent 75eba22e9e
commit 0aa3630adb
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ export default {
this.getDuration(2) this.getDuration(2)
Dialog.alert({ Dialog.alert({
message:this.detailInfo.contactNumber , message:this.detailInfo.contactNumber ,
confirmButtonText:'拨打电话', confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
showCancelButton:true, showCancelButton:true,
}).then(async() => { }).then(async() => {
window.location.href = `tel:${this.detailInfo.contactNumber}`; window.location.href = `tel:${this.detailInfo.contactNumber}`;

View File

@ -107,7 +107,7 @@ export default {
this.getDuration(2) this.getDuration(2)
Dialog.alert({ Dialog.alert({
message:this.detailInfo.contactNumber , message:this.detailInfo.contactNumber ,
confirmButtonText:'拨打电话', confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
showCancelButton:true, showCancelButton:true,
}).then(() => { }).then(() => {
window.location.href = `tel:${this.detailInfo.contactNumber}`; window.location.href = `tel:${this.detailInfo.contactNumber}`;