企业通讯录插件 (ContactBridge.openTenantContact)
从企业通讯录中选择成员的插件
//成功回调
var onSuccess = function(message){
//message:数据格式为JSON数组类型
}
//失败回调
var onError = function(message){
alert(message);
}
function tenantContact(){
var options = {
//不可选择列表,不包含在最后的选中名单中
unSelectAbleList:[{"employeeId":"90120"},{"employeeId":"90115","userId":"300282"}],
//默认选择列表,不可取消,包含在最后的选中名单中
defaultSelectList:[{"employeeId":"90123"},{"employeeId":"90116"}],
//默认选择列表,可取消,选中结果包含在最后的选中名单中
selectList:[{"employeeId":"90107","name":"佩琦","imageUrl":""}]
}
var arguments = {
className:"ContactBridge",
function:"openTenantContact",
params:options,
successCallBack:"onSuccess",
failCallBack:"onError"
}
HandBridge.postMessage(JSON.stringify(arguments))
}