|
|
@@ -426,9 +426,7 @@ export const noStockRemind = () =>{
|
|
|
|
|
|
export async function callUp(mobile){
|
|
|
//#ifdef MP-WEIXIN
|
|
|
- uni.makePhoneCall({
|
|
|
- phoneNumber: mobile
|
|
|
- });
|
|
|
+ uni.makePhoneCall({phoneNumber: mobile})
|
|
|
//#endif
|
|
|
//#ifdef APP-PLUS
|
|
|
let env = uni.getSystemInfoSync().platform
|
|
|
@@ -442,7 +440,7 @@ export async function callUp(mobile){
|
|
|
return
|
|
|
}
|
|
|
}
|
|
|
- plus.device.dial(mobile, true);
|
|
|
+ uni.makePhoneCall({phoneNumber: mobile})
|
|
|
//#endif
|
|
|
}
|
|
|
|