1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace app\data\controller;
- use app\data\service\UserService;
- use think\admin\Controller;
- /**
- * 普通用户管理
- * Class User
- * @package app\data\controller
- */
- class User extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'DataUser';
- /**
- * 普通用户管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '普通用户管理';
- $query = $this->_query($this->table);
- $query->like('phone,username|nickname#username');
- $query->order('id desc')->equal('status')->dateBetween('create_at')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _page_filter(array &$data)
- {
- UserService::instance()->buildByUid($data, 'pid1', 'fromer');
- }
- /**
- * 修改用户状态
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function state()
- {
- $this->_save($this->table, $this->_vali([
- 'status.in:0,1' => '状态值范围异常!',
- 'status.require' => '状态值不能为空!',
- ]));
- }
- }
|