优化代码
This commit is contained in:
parent
eaa68ffb6f
commit
9a7f2ff4df
@ -137,16 +137,16 @@ function get_admin_menus()
|
||||
|
||||
|
||||
//读取部门列表
|
||||
function d_department()
|
||||
function get_department()
|
||||
{
|
||||
$department = Db::name('Department')->select()->toArray();
|
||||
return $department;
|
||||
}
|
||||
|
||||
//获取某部门的子部门id
|
||||
function d_department_son($did = 0,$is_self=1)
|
||||
function get_department_son($did = 0,$is_self=1)
|
||||
{
|
||||
$department=d_department();
|
||||
$department=get_department();
|
||||
$department_list = get_data_node($department,$did);
|
||||
$department_array = array_column($department_list,'id');
|
||||
if($is_self == 1){
|
||||
|
@ -36,7 +36,7 @@ class Admin extends BaseController
|
||||
$where[] = ['type', '=', $param['type']];
|
||||
}
|
||||
if (!empty($param['did'])) {
|
||||
$department_array = d_department_son($param['did']);
|
||||
$department_array = get_department_son($param['did']);
|
||||
$where[] = ['did', 'in', $department_array];
|
||||
}
|
||||
$rows = empty($param['limit']) ? get_config(app . page_size) : $param['limit'];
|
||||
@ -60,7 +60,7 @@ class Admin extends BaseController
|
||||
public function add()
|
||||
{
|
||||
$id = empty(get_params('id')) ? 0 : get_params('id');
|
||||
$department = set_recursion(d_department());
|
||||
$department = set_recursion(get_department());
|
||||
$position = Db::name('Position')->where('status', '>=', 0)->order('create_time asc')->select();
|
||||
if ($id > 0) {
|
||||
$detail = get_admin($id);
|
||||
|
@ -158,7 +158,7 @@ class Api extends BaseController
|
||||
//获取部门节点列表
|
||||
public function get_department_tree()
|
||||
{
|
||||
$department = d_department();
|
||||
$department = get_department();
|
||||
$list = get_tree($department, 0,2);
|
||||
$data['trees'] = $list;
|
||||
return json($data);
|
||||
@ -168,7 +168,7 @@ class Api extends BaseController
|
||||
public function get_employee($did=0)
|
||||
{
|
||||
$did=get_params('did');
|
||||
$department=d_department_son($did);
|
||||
$department=get_department_son($did);
|
||||
$employee = Db::name('admin')
|
||||
->field('a.id,a.did,a.position_id,a.mobile,a.name,a.nickname,a.sex,a.status,a.thumb,a.username,d.title as department')
|
||||
->alias('a')
|
||||
|
@ -20,7 +20,12 @@ class Department extends BaseController
|
||||
public function index()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
$list = Db::name('Department')->order('create_time asc')->select();
|
||||
$list = Db::name('Department')
|
||||
->field('d.*,a.name as leader')
|
||||
->alias('d')
|
||||
->join('Admin a', 'a.id = d.uid','LEFT')
|
||||
->order('create_time asc')
|
||||
->select();
|
||||
return to_assign(0, '', $list);
|
||||
} else {
|
||||
return view();
|
||||
@ -32,9 +37,11 @@ class Department extends BaseController
|
||||
{
|
||||
$id = empty(get_params('id')) ? 0 : get_params('id');
|
||||
$pid = empty(get_params('pid')) ? 0 : get_params('pid');
|
||||
$department = set_recursion(d_department());
|
||||
$department = set_recursion(get_department());
|
||||
if($id > 0) {
|
||||
$detail = Db::name('Department')->where(['id' => $id])->find();
|
||||
$users=Db::name('Admin')->where(['did'=>$id,'status'=>1])->select();
|
||||
View::assign('users', $users);
|
||||
View::assign('detail', $detail);
|
||||
}
|
||||
View::assign('department', $department);
|
||||
@ -55,8 +62,14 @@ class Department extends BaseController
|
||||
return to_assign(1, $e->getError());
|
||||
}
|
||||
$param['update_time'] = time();
|
||||
Db::name('Department')->strict(false)->field(true)->update($param);
|
||||
add_log('edit', $param['id'], $param);
|
||||
$department_array=get_department_son($param['id']);
|
||||
if (in_array($param['pid'], $department_array)){
|
||||
return to_assign(1,'上级部门不能是该部门本身或其下属部门');
|
||||
}
|
||||
else{
|
||||
Db::name('Department')->strict(false)->field(true)->update($param);
|
||||
add_log('edit', $param['id'], $param);
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
validate(DepartmentCheck::class)->scene('add')->check($param);
|
||||
@ -71,52 +84,15 @@ class Department extends BaseController
|
||||
}
|
||||
}
|
||||
|
||||
//提交添加
|
||||
public function save()
|
||||
{
|
||||
if($this->request->isPost()){
|
||||
$param = vae_get_param();
|
||||
if($param['id']>0){
|
||||
$result = $this->validate($param, 'app\home\validate\Department.edit');
|
||||
if ($result !== true) {
|
||||
return vae_assign(0,$result);
|
||||
} else {
|
||||
$param['update_time'] = time();
|
||||
$department_array=[];
|
||||
$department_cate = vae_get_department();
|
||||
$department_ids=get_data_node($department_cate,$param['id']);
|
||||
$department_array = array_column($department_ids, 'id');
|
||||
$department_array[]=$param['id'];
|
||||
if (in_array($param['pid'], $department_array)){
|
||||
return vae_assign(0,'上级部门不能是该部门本身或其下属部门');
|
||||
}
|
||||
else{
|
||||
$res = \think\loader::model('Department')->strict(false)->field(true)->update($param);
|
||||
if($res) add_log('edit',$param['id'],$param);
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$result = $this->validate($param, 'app\home\validate\Department.add');
|
||||
if ($result !== true) {
|
||||
return vae_assign(0,$result);
|
||||
} else {
|
||||
$param['create_time'] = time();
|
||||
$mid = \think\loader::model('Department')->strict(false)->field(true)->insertGetId($param);
|
||||
}
|
||||
}
|
||||
return vae_assign();
|
||||
}
|
||||
}
|
||||
|
||||
//删除
|
||||
public function delete()
|
||||
{
|
||||
$id = get_params("id");
|
||||
$count = Db::name('Department')->where(["pid" => $id,'status'=>['egt',0]])->count();
|
||||
$users = Db::name('Admin')->where(["did" => $id,'status'=>['egt',0]])->count();
|
||||
$count = Db::name('Department')->where([['pid','=',$id],['status','>=',0]])->count();
|
||||
if ($count > 0) {
|
||||
return to_assign(1,"该部门下还有子部门,无法删除");
|
||||
}
|
||||
$users = Db::name('Admin')->where([['did','=',$id],['status','>=',0]])->count();
|
||||
if ($users > 0) {
|
||||
return to_assign(1,"该部门下还有员工,无法删除");
|
||||
}
|
||||
|
@ -5,9 +5,10 @@
|
||||
.layui-tree-entry{font-size:15px; line-height:24px}
|
||||
.layui-tree-set{padding:2px 0}
|
||||
.layui-tree-iconClick .layui-icon{color:#1E9FFF}
|
||||
.layui-tree-icon {height: 14px;line-height: 14px; width: 14px;text-align: center;border: 1px solid #1E9FFF; color:#1E9FFF}
|
||||
.layui-icon layui-icon-file{font-size:16px;}
|
||||
.layui-tree-icon {height: 14px;line-height: 14px; width: 14px; text-align: center;border: 1px solid #1E9FFF; color:#1E9FFF}
|
||||
.layui-tree-line .layui-tree-set .layui-tree-set:after{top:18px;}
|
||||
.tree-left{width:200px; float:left; height:calc(100% - 30px); overflow: scroll; border:1px solid #e6e6e6; background-color:#f8f8f8; padding:12px 12px 12px 5px;}
|
||||
.tree-left{width:200px; float:left; height:calc(100% - 30px); overflow: scroll; border:1px solid #eeeeee; background-color:#FAFAFA; padding:12px 12px 12px 5px;}
|
||||
.tree-left h3{font-size:16px; height:30px; padding-left:10px; font-weight:800}
|
||||
</style>
|
||||
{/block}
|
||||
|
@ -5,6 +5,10 @@
|
||||
{eq name="$id" value="0"}
|
||||
<table class="layui-table layui-table-form">
|
||||
<tr>
|
||||
<td class="layui-td-gray2">部门名称<font>*</font></td>
|
||||
<td>
|
||||
<input type="text" name="title" lay-verify="required" autocomplete="off" placeholder="请输入部门名称" lay-reqText="请输入部门名称" class="layui-input">
|
||||
</td>
|
||||
<td class="layui-td-gray2">上级部门<font>*</font></td>
|
||||
<td>
|
||||
<select name="pid" lay-verify="required" lay-reqText="请选择上级部门">
|
||||
@ -14,16 +18,6 @@
|
||||
{/volist}
|
||||
</select>
|
||||
</td>
|
||||
<td class="layui-td-gray2">部门名称<font>*</font></td>
|
||||
<td>
|
||||
<input type="text" name="title" lay-verify="required" autocomplete="off" placeholder="请输入部门名称" lay-reqText="请输入部门名称" class="layui-input">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray2">部门负责人</td>
|
||||
<td>
|
||||
<input type="text" name="uid" placeholder="请选择部门负责人,可空" autocomplete="off" class="layui-input">
|
||||
</td>
|
||||
<td class="layui-td-gray2">部门联系电话</td>
|
||||
<td>
|
||||
<input type="text" name="phone" placeholder="请输入部门联系电话,可空" autocomplete="off" class="layui-input">
|
||||
@ -33,6 +27,10 @@
|
||||
{else/}
|
||||
<table class="layui-table layui-table-form">
|
||||
<tr>
|
||||
<td class="layui-td-gray2">部门名称<font>*</font></td>
|
||||
<td>
|
||||
<input type="text" name="title" value="{$detail.title}" lay-verify="required" autocomplete="off" placeholder="请输入部门名称" lay-reqText="请输入部门名称" class="layui-input">
|
||||
</td>
|
||||
<td class="layui-td-gray2">上级部门<font>*</font></td>
|
||||
<td>
|
||||
<select name="pid" lay-verify="required" lay-reqText="请选择上级部门">
|
||||
@ -42,15 +40,16 @@
|
||||
{/volist}
|
||||
</select>
|
||||
</td>
|
||||
<td class="layui-td-gray2">部门名称<font>*</font></td>
|
||||
<td>
|
||||
<input type="text" name="title" value="{$detail.title}" lay-verify="required" autocomplete="off" placeholder="请输入部门名称" lay-reqText="请输入部门名称" class="layui-input">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray2">部门负责人</td>
|
||||
<td>
|
||||
<input type="text" name="uid" value="{$detail.uid}" placeholder="请选择部门负责人,可空" autocomplete="off" class="layui-input">
|
||||
<select name="uid">
|
||||
<option value="0">请选择部门负责人</option>
|
||||
{volist name="users" id="v"}
|
||||
<option value="{$v.id}" {eq name="detail.uid" value="$v.id"} selected{/eq}>{$v.name}</option>
|
||||
{/volist}
|
||||
</select>
|
||||
</td>
|
||||
<td class="layui-td-gray2">部门联系电话</td>
|
||||
<td>
|
||||
|
@ -43,8 +43,8 @@
|
||||
{ field: 'id', width: 100, title: 'ID号', align: 'center' }
|
||||
, { field: 'pid', title: '上级部门ID',width: 120, align: 'center'}
|
||||
, { field: 'title', title: '部门名称'}
|
||||
, { field: 'uername', title: '部门负责人',width: 120, align: 'center'}
|
||||
, { field: 'phone', title: '部门电话',width: 180, align: 'center'}
|
||||
, { field: 'leader', title: '部门负责人',width: 120, align: 'center'}
|
||||
, { field: 'phone', title: '部门电话',width: 160,}
|
||||
, { width: 200, title: '操作', align: 'center', templet: function (d) {
|
||||
var html = '<a class="layui-btn layui-btn-normal layui-btn-xs" href="/home/department/add?pid=' + d.id + '">添加下级部门</a><a class="layui-btn layui-btn-xs" href="/home/department/add?id=' + d.id + '">编辑</a><a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>';
|
||||
return html;
|
||||
|
@ -173,7 +173,7 @@
|
||||
|
||||
//监听返回
|
||||
$('.body-content').on('click', '[lay-event="back"]', function () {
|
||||
history.back(-1);
|
||||
window.location.href="{:url('home/role/index')}";
|
||||
return false;
|
||||
});
|
||||
|
||||
|
@ -40,10 +40,10 @@
|
||||
limit: 20,
|
||||
cols: [[ //表头
|
||||
{ field: 'id', title: 'ID号', align: 'center', width: 80 }
|
||||
, { field: 'title', title: '名称', width: 300 }
|
||||
, { field: 'title', title: '名称', width: 200 }
|
||||
, { field: 'desc', title: '备注' }
|
||||
, { field: 'status', title: '状态', toolbar: '#status', align: 'center', width: 90 }
|
||||
, { width: 160,
|
||||
, { field: 'status', title: '状态', toolbar: '#status', align: 'center', width: 80 }
|
||||
, { width: 120,
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
templet: function (d) {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 15 KiB |
Binary file not shown.
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 9.0 KiB |
Loading…
x
Reference in New Issue
Block a user