任务选择负责人弹层缺少请求连接

This commit is contained in:
hdm 2022-07-03 08:36:40 +08:00
parent 6a093d4e3e
commit 67bac9e3b2
2 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,7 @@ abstract class BaseController
$this->controller = strtolower($this->request->controller());
$this->action = strtolower($this->request->action());
$this->uid = 0;
$this->did = 0;
// 控制器初始化
$this->initialize();
}
@ -86,6 +87,7 @@ abstract class BaseController
}
} else {
$this->uid = Session::get($session_admin)['id'];
$this->did = Session::get($session_admin)['did'];
View::assign('login_user', $this->uid);
// 验证用户访问权限
if (($this->module == 'api') || ($this->module == 'home' && $this->controller == 'index')) {

View File

@ -127,6 +127,8 @@
employeepicker.init({
ids: id_array,
names: name_array,
department_url: "/api/index/get_department_tree",
employee_url: "/api/index/get_employee",
callback: function (ids, names, dids, departments) {
$('[name="' + ids_name + '"]').val(ids);
that.val(names);