This commit is contained in:
2020-07-10 22:33:30 +08:00
parent d7901e444d
commit 3a281cacf4
96 changed files with 3496 additions and 939 deletions

View File

@@ -62,16 +62,16 @@ MyUtl.callCust = function(cust)
phonesVal,
function(val, selectedItem)
if val then
MyUtl.doCall(cust.custId, val)
MyUtl.doCall(cust.custId, val, cust)
end
end
)
else
MyUtl.doCall(cust.custId, cust.phoneNo)
MyUtl.doCall(cust.custId, cust.phoneNo, cust)
end
end
MyUtl.doCall = function(custId, phoneNo)
MyUtl.doCall = function(custId, phoneNo, cust)
showHotWheel("拨号中...")
NetProto.send.bi_call(
custId,
@@ -81,6 +81,7 @@ MyUtl.doCall = function(custId, phoneNo)
hideHotWheel()
if content.success then
MyUtl.toastS("拨号成功!")
getPanelAsy("PanelNewFollow", onLoadedPanelTT, cust)
end
end
)