修改访问权限

This commit is contained in:
邹景立 2021-04-09 19:02:01 +08:00
parent 6eab95d43d
commit 3226ba9efd
2 changed files with 3 additions and 5 deletions

View File

@ -110,7 +110,7 @@ class Auth extends Controller
$this->app->db->name('SystemAuthNode')->where($map)->delete();
$this->app->db->name('SystemAuthNode')->insertAll($data);
sysoplog('系统权限管理', "配置系统权限[{$map['auth']}]授权成功");
$this->success('权限授权修改成功!', 'javascript:history.back()');
$this->success('访问权限修改成功!', 'javascript:history.back()');
} else {
$this->title = '权限配置节点';
$this->_form($this->table, 'apply');

View File

@ -34,11 +34,9 @@
});
return childrens;
};
this.getData = function (that, index) {
index = $.msg.loading();
this.getData = function (that) {
$.form.load('{:url("apply")}', {id: '{$vo.id}', action: 'get'}, 'post', function (ret) {
that.data = that.renderChildren(ret.data, 1);
return $.msg.close(index), that.showTree(), false;
return (that.data = that.renderChildren(ret.data, 1)), that.showTree(), false;
});
};
this.showTree = function () {