From 83302f25012f30723af3ee8e417665115793f42d Mon Sep 17 00:00:00 2001 From: "HDM58\\hdm58" Date: Thu, 7 Dec 2023 18:33:26 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E8=AE=BE=E7=BD=AE=E8=B6=85=E7=BA=A7?= =?UTF-8?q?=E5=B2=97=E4=BD=8D=E4=B8=8D=E8=83=BD=E4=BF=AE=E6=94=B9=202?= =?UTF-8?q?=E3=80=81=E8=B6=85=E7=BA=A7=E7=AE=A1=E7=90=86=E5=91=98=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E4=B8=8D=E6=94=AF=E6=8C=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/install/data/gouguoa.sql | 2 +- app/user/controller/Position.php | 5 ++++- app/user/controller/User.php | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) 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();