|
@@ -25,7 +25,7 @@ function webphoneHandle(type, data, options) {
|
|
|
|
|
|
}
|
|
|
|
|
|
-export function callNumber(customerId,contactsId){
|
|
|
+export function callNumber(customerId,contactsId,orderId){
|
|
|
|
|
|
const callUser = store.getters && store.getters.callUser
|
|
|
const callRealm = store.getters && store.getters.callRealm
|
|
@@ -70,7 +70,7 @@ export function callNumber(customerId,contactsId){
|
|
|
})
|
|
|
_phone.start({});
|
|
|
}
|
|
|
- var data={customerId:customerId,contactsId:contactsId};
|
|
|
+ var data={customerId:customerId,contactsId:contactsId,orderId:orderId};
|
|
|
this.callMobile(data).then(response => {
|
|
|
if(response.code==200){
|
|
|
_phone.call(response.mobile,{userdata:response.logs.sessionId});
|