diff --git a/app/install/data/gouguoa.sql b/app/install/data/gouguoa.sql index 502c832..3da4d3f 100644 --- a/app/install/data/gouguoa.sql +++ b/app/install/data/gouguoa.sql @@ -1095,7 +1095,7 @@ CREATE TABLE `oa_position` ( -- ---------------------------- -- Records of oa_position -- ---------------------------- -INSERT INTO `oa_position` VALUES (1, '超级岗位', 1000, '超级岗位,不能轻易修改权限', 1, 0, 0); +INSERT INTO `oa_position` VALUES (1, '超级岗位', 1000, '超级岗位,不能修改', 1, 0, 0); INSERT INTO `oa_position` VALUES (2, '人事总监', 1000, '人事部的最大领导', 1, 0, 0); INSERT INTO `oa_position` VALUES (3, '普通员工', 500, '普通员工', 1, 0, 0); diff --git a/app/user/controller/Position.php b/app/user/controller/Position.php index 51281da..9cc096c 100644 --- a/app/user/controller/Position.php +++ b/app/user/controller/Position.php @@ -39,6 +39,9 @@ class Position extends BaseController $param = get_params(); if (request()->isAjax()) { if (!empty($param['id']) && $param['id'] > 0) { + if ($param['id'] == 1) { + return to_assign(1, "超级岗位,不能修改"); + } try { validate(PositionCheck::class)->scene('edit')->check($param); } catch (ValidateException $e) { @@ -162,7 +165,7 @@ class Position extends BaseController { $id = get_params("id"); if ($id == 1) { - return to_assign(0, "超级岗位,不能删除"); + return to_assign(1, "超级岗位,不能删除"); } $data['status'] = '-1'; $data['id'] = $id; diff --git a/app/user/controller/User.php b/app/user/controller/User.php index ce05f55..88e5071 100644 --- a/app/user/controller/User.php +++ b/app/user/controller/User.php @@ -69,6 +69,9 @@ class User extends BaseController $username = $pinyin->name($param['name'], PINYIN_UMLAUT_V); $param['username'] = implode('', $username); if (!empty($param['id']) && $param['id'] > 0) { + if($param['id'] == 1){ + return to_assign(1, '超级员工资料不支持修改'); + } $count = Db::name('Admin')->where([['username','=',$param['username']],['id','<>',$param['id']],['status','>=',0]])->count(); if ($count > 0) { $count_e = Db::name('Admin')->where([['username', 'like', $param['username'].'%']])->count();