$.ajax({
type: "POST",
dataType: "json", //返回json格式的数据
url: "/BulkChanges/UpdateQuantity",
data: { "strJson": JSON.stringify(TaobaoJson) },
success: function (ret) {
if (ret.State) {
that.controller.loadDataFromServer(that.model.filterModel);
//5、打开处理完成遮罩
that.controller.Handle_CompleteDialog();
}
else {
//alert("失败");
that.controller.loadDataFromServer(that.model.filterModel);
QLRR.Dialog.Alert({ title: 'error', msg: ret.Message });
}
},
error: function () {
QLRR.Dialog.Alert({ title: 'error', msg: "客户端逻辑错误,请联系管理员!" });
},
complete: function () {
//4、后台成功后关闭处理中遮罩
that.controller.ColseHandlingDialog();
}
})
$.ajax({ url:"/index.php/organise/organise_single_lists", type:"post", contentType:"application/x-www-form-urlencoded", dataType:"json", success:function(result){ var config = { id: "tg1", renderTo: "div1", headerAlign: "left", headerHeight: "30", dataAlign: "left", indentation: "20", hoverRowBackground: "false", folderColumnIndex: "1", folderOpenIcon: "glyphicon glyphicon-triangle-bottom", folderCloseIcon: "glyphicon glyphicon-triangle-right ", defaultLeafIcon: "glyphicon glyphicon-minus", expandALL:true, columns:[ {headerText: "序号", headerAlign: "center", dataAlign: "center", "50", handler:"customNumber"}, {headerText: "名称", dataField: "org_name", headerAlign: "center", handler: "customOrgName"} ], data:result }; treeGrid = new TreeGrid(config); treeGrid.show(); }, error(xhr,status,error){ }, complete(xhr,status){ //请求完毕后,用来关闭页面提示 } });