12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace app\admin\controller\user;
- use app\common\controller\Backend;
- use think\Db;
- class User extends Backend
- {
-
- protected $model = null;
- protected $selectpageFields = 'id,username,nickname,mobile';
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\User;
- $this->view->assign("statusList", $this->model->getStatusList());
- $this->view->assign("idcardStatusList", $this->model->getIdcardStatusList());
- }
-
-
- public function index()
- {
-
- $this->relationSearch = true;
-
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
-
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- ->with(['group','wallet'])
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- foreach ($list as $row) {
-
- $row->getRelation('group')->visible(['name']);
- $row->getRelation('wallet')->visible(['money']);
- }
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
-
- public function editproduct(){
- $ids = input('id');
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- if (false === $this->request->isPost()) {
- $this->view->assign('row', $row);
- return $this->view->fetch();
- }
- $product_ids = input('product_ids','');
- $rs = Db::name('user')->where('id',$ids)->update(['product_ids'=>$product_ids]);
- $this->success();
- }
- }
|