旭晓耿 5 年之前
父節點
當前提交
a2c2006e0b
共有 2 個檔案被更改,包括 8 行新增1 行删除
  1. 0
    1
      application/admin/model/User.php
  2. 8
    0
      application/oa/logic/ExamineLogic.php

+ 0
- 1
application/admin/model/User.php 查看文件

@@ -400,7 +400,6 @@ class User extends Common
400 400
 				$this->error = '直属上级不能是自己或下属';
401 401
 				return false;
402 402
 			}
403
-			p(2333);
404 403
 			if (db('admin_user')->where(['id' => ['neq',$id],'username' => $param['username']])->find()) {
405 404
 				$this->error = '手机号已存在';
406 405
 				return false;			

+ 8
- 0
application/oa/logic/ExamineLogic.php 查看文件

@@ -11,6 +11,14 @@ class ExamineLogic extends Common
11 11
 {
12 12
     private $statusArr = ['0' => '待审核', '1' => '审核中', '2' => '审核通过', '3' => '已拒绝', '4' => '已撤回'];
13 13
     
14
+    /**
15
+     * 导入数据查询
16
+     * @param $request
17
+     *
18
+     * @author      alvin guogaobo
19
+     * @version     1.0 版本号
20
+     * @since       2021/2/27 0027 17:34
21
+     */
14 22
     public function getDataList($request)
15 23
     {
16 24
         $userModel = new \app\admin\model\User();