Commit 30453489 authored by youjie's avatar youjie

no message

parent 0f0ccc58
...@@ -378,12 +378,14 @@ ...@@ -378,12 +378,14 @@
title: '提示', title: '提示',
content: `${item.SalePhone?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`, content: `${item.SalePhone?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`,
success: (tip) => { success: (tip) => {
if (tip.confirm) {
if(item.SalePhone){ if(item.SalePhone){
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: item.SalePhone, phoneNumber: item.SalePhone,
}); });
} }
} }
}
}) })
return return
} }
......
...@@ -401,12 +401,14 @@ ...@@ -401,12 +401,14 @@
title: '提示', title: '提示',
content: `${this.SalePhone!=''?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`, content: `${this.SalePhone!=''?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`,
success: (tip) => { success: (tip) => {
if (tip.confirm) {
if(this.SalePhone!=''){ if(this.SalePhone!=''){
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: this.SalePhone, phoneNumber: this.SalePhone,
}); });
} }
} }
}
}) })
return return
// #endif // #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment