User.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\company\controller;
  15. use app\company\service\DataService;
  16. use library\Controller;
  17. use think\Db;
  18. /**
  19. * 企业员工管理
  20. * Class User
  21. * @package app\worker\controller
  22. */
  23. class User extends Controller
  24. {
  25. /**
  26. * 绑定当前数据表
  27. * @var string
  28. */
  29. protected $table = 'CompanyUser';
  30. /**
  31. * 企业员工管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '仓库权限管理';
  43. $this->_query($this->table)->like('nickname,svn_username')->equal('status')->page();
  44. }
  45. /**
  46. * 添加企业员工
  47. * @auth true
  48. * @throws \think\Exception
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. * @throws \think\exception\PDOException
  53. */
  54. public function add()
  55. {
  56. $this->_form($this->table, 'form');
  57. }
  58. /**
  59. * 修改企业员工
  60. * @auth true
  61. * @throws \think\Exception
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. * @throws \think\exception\DbException
  65. * @throws \think\exception\PDOException
  66. */
  67. public function edit()
  68. {
  69. $this->_form($this->table, 'form');
  70. }
  71. /**
  72. * 权限表单数据处理
  73. * @param array $data 表单数据
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @throws \think\exception\DbException
  77. */
  78. protected function _form_filter(&$data)
  79. {
  80. if ($this->request->isGet()) {
  81. $where = ['status' => '1', 'is_deleted' => '0'];
  82. $this->auths = Db::name('company_user_auth')->where($where)->order('sort desc,id desc')->select();
  83. array_unshift($this->auths, ['id' => '0', 'title' => '所有权限', 'path' => '/']);
  84. $data['svn_authorize'] = isset($data['svn_authorize']) ? explode(',', $data['svn_authorize']) : [];
  85. } else {
  86. if (isset($data['svn_authorize']) && is_array($data['svn_authorize'])) {
  87. $data['svn_authorize'] = join(',', $data['svn_authorize']);
  88. } else {
  89. $data['svn_authorize'] = '';
  90. }
  91. $macs = [];
  92. foreach (explode(PHP_EOL, preg_replace("/\s+/", PHP_EOL, trim($data['mobile_macs']))) as $mac) {
  93. if (DataService::applyMacValue($mac)) $macs[] = $mac;
  94. }
  95. $data['mobile_macs'] = join(PHP_EOL, array_unique($macs));
  96. }
  97. }
  98. /**
  99. * 更改企业员工状态
  100. * @auth true
  101. * @throws \think\Exception
  102. * @throws \think\exception\PDOException
  103. */
  104. public function state()
  105. {
  106. $this->_save($this->table, ['status' => input('status', '0')]);
  107. }
  108. /**
  109. * 删除企业员工
  110. * @auth true
  111. * @throws \think\Exception
  112. * @throws \think\exception\PDOException
  113. */
  114. public function remove()
  115. {
  116. $this->_delete($this->table);
  117. }
  118. }