mirror of https://gitee.com/stylefeng/guns
【organization.js】修复删除不刷新树BUG
parent
ac3d27cbf4
commit
1a78b34d31
|
@ -36,7 +36,10 @@ layui.use(['layer', 'form', 'table', 'util', 'admin', 'tree', 'dropdown', 'xmSel
|
||||||
height: 800,
|
height: 800,
|
||||||
title: '修改机构',
|
title: '修改机构',
|
||||||
content: Feng.ctxPath + '/view/organization/editView?orgId=' + data.id,
|
content: Feng.ctxPath + '/view/organization/editView?orgId=' + data.id,
|
||||||
tableId: Organization.tableId
|
tableId: Organization.tableId,
|
||||||
|
endCallback: function () {
|
||||||
|
renderTree();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -45,7 +48,10 @@ layui.use(['layer', 'form', 'table', 'util', 'admin', 'tree', 'dropdown', 'xmSel
|
||||||
var operation = function () {
|
var operation = function () {
|
||||||
var httpRequest = new HttpRequest(Feng.ctxPath + "/hrOrganization/delete", 'post', function (data) {
|
var httpRequest = new HttpRequest(Feng.ctxPath + "/hrOrganization/delete", 'post', function (data) {
|
||||||
Feng.success("删除成功!");
|
Feng.success("删除成功!");
|
||||||
|
//刷新表格
|
||||||
table.reload(Organization.tableId);
|
table.reload(Organization.tableId);
|
||||||
|
//刷新树
|
||||||
|
renderTree();
|
||||||
}, function (data) {
|
}, function (data) {
|
||||||
Feng.error("删除失败!" + data.message + "!");
|
Feng.error("删除失败!" + data.message + "!");
|
||||||
});
|
});
|
||||||
|
@ -66,8 +72,6 @@ layui.use(['layer', 'form', 'table', 'util', 'admin', 'tree', 'dropdown', 'xmSel
|
||||||
selObj = obj;
|
selObj = obj;
|
||||||
$('#organizationTree').find('.ew-tree-click').removeClass('ew-tree-click');
|
$('#organizationTree').find('.ew-tree-click').removeClass('ew-tree-click');
|
||||||
$(obj.elem).children('.layui-tree-entry').addClass('ew-tree-click');
|
$(obj.elem).children('.layui-tree-entry').addClass('ew-tree-click');
|
||||||
|
|
||||||
console.log(obj.data);
|
|
||||||
insTb.reload({
|
insTb.reload({
|
||||||
where: {orgParentId: obj.data.id},
|
where: {orgParentId: obj.data.id},
|
||||||
page: {curr: 1},
|
page: {curr: 1},
|
||||||
|
|
Loading…
Reference in New Issue