02定区关联客户
function doAssociations(){
//$('#customerWindow').window('open');
//获取当前数据表格中所有选中的行,返回数组.
var rows=$("#grid").datagrid("getSelections");
if(rows.length !=1)
{
//弹出提示
$.messager.alert("提示信息","请选择一个定区操作!","warning");
}
else{
//选中了一个定区
$('#customerWindow').window('open');
//发送Ajax请求,请求定区Action,在定区Action中通过crm代理对象完成对crm服务远程调用.
var url_1='decidedzoneAction_findListNotAssociation.action';
$.post(url_1,function(data){
alert(data);
});
}
}
本文标题:02定区关联客户
本文链接:https://www.haomeiwen.com/subject/gonkuxtx.html
网友评论