Commit 30453489 authored by youjie's avatar youjie

no message

parent 0f0ccc58
...@@ -378,10 +378,12 @@ ...@@ -378,10 +378,12 @@
title: '提示', title: '提示',
content: `${item.SalePhone?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`, content: `${item.SalePhone?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`,
success: (tip) => { success: (tip) => {
if(item.SalePhone){ if (tip.confirm) {
uni.makePhoneCall({ if(item.SalePhone){
phoneNumber: item.SalePhone, uni.makePhoneCall({
}); phoneNumber: item.SalePhone,
});
}
} }
} }
}) })
......
...@@ -401,10 +401,12 @@ ...@@ -401,10 +401,12 @@
title: '提示', title: '提示',
content: `${this.SalePhone!=''?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`, content: `${this.SalePhone!=''?'确定拨打服务电话取消订单吗?':'请联系服务人员进行取消?'}`,
success: (tip) => { success: (tip) => {
if(this.SalePhone!=''){ if (tip.confirm) {
uni.makePhoneCall({ if(this.SalePhone!=''){
phoneNumber: this.SalePhone, uni.makePhoneCall({
}); phoneNumber: this.SalePhone,
});
}
} }
} }
}) })
......
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