request->isPost()) { $params = input('searchParams/a'); $page = input('page/d', 1); $size = input('size/d', 20); $type = input('type', AccountStar::TYPE_MANAGER); $where = []; if (!empty($params)) { foreach ($params as $key => $param) { $param = trim($param); if ($key == 'keyword') { $where[] = ['a.nickname|a.mobile|a.real_name', 'like', '%'.$param.'%']; continue; } if ($param == '0' || !empty($param)) { $where[] = ['cl.'.$key, '=', $param]; } } } $where[] = ['cl.type', '=', $type]; if ($accountId > 0) { $where[] = ['cl.account_id', '=', $accountId]; } $query = AccountStar::alias('cl') ->leftJoin('account a', 'a.id = cl.account_id') ->where($where); $total = $query->count(); $res = [ 'total' => $total, 'current' => $page ?: 1, 'size' => $size ?: 20, 'list' => [], ]; if ($total > 0) { $res['list'] = $query->fieldRaw('cl.*,a.nickname,a.real_name')->page($page, $size)->order('cl.ym', 'desc')->select(); $res['list']->each(function ($item) { $item->account_text = $item->nickname.' '.$item->real_name;//用户信息 $item->date = $item->year.'年'.$item->month.'月'; }); } return $this->json(0, 'success', $res); } $this->data['userId'] = $accountId; $this->data['worksiteList'] = \app\model\Worksite::list(); return $this->view(); } /** * 添加 * * @return Json|View */ public function add() { if ($this->request->isPost()) { try { $input = input('post.'); if (!isset($input['name'])) { return $this->json(4000, '参数错误'); } ClockLog::create([ 'name' => $input['name'] ?? '', ]); return $this->json(); } catch (Exception $e) { return $this->json(4001, '添加失败'.$e->getMessage()); } } return $this->view(); } /** * 编辑 * * @return \think\response\Json|\think\response\View */ public function edit() { $id = input('id'); //通过ID查询 $item = ClockLog::where('id', (int) $id)->find(); if (empty($item)) { return $this->json(4000, '没有相关记录!'); } if ($this->request->isPost()) { try { $input = input('post.'); if (!isset($input['name'])) { return $this->json(4000, '参数错误'); } $item->save([ 'name' => $input['name'] ?? '', ]); return $this->json(); } catch (Exception $e) { return $this->json(5000, $e->getMessage()); } } $this->data['item'] = $item; $this->data['id'] = $id; return $this->view(); } /** * 更新属性 * * @throws ModelNotFoundException * @throws DbException * @throws DataNotFoundException * @throws Exception */ public function modify() { if (!$this->request->isPost()) { return $this->json(4000, '非法请求'); } $item = input('post.'); $validate = $this->validateByApi($item, [ 'field' => 'require', 'value' => 'require', ]); if ($validate !== true) { return $validate; } // 通过ID查询 if (!$info = ClockLog::where('id', (int) $item['id'])->find()) { return $this->json(4001, '记录不存在'); } $update = [$item['field'] => $item['value']]; try { $info->save($update); return $this->json(); } catch (ValidateException $e) { return $this->json(4001, $e->getError()); } catch (Exception $e) { return $this->json(5000, '修改失败'); } } /** * 删除 * * @return \think\response\Json */ public function del(): Json { if (!$this->request->isPost()) { return $this->json(4000, '非法请求'); } $ids = $this->request->param('ids/a', []); if (empty($ids)) { $ids[] = $this->request->param('id/d', 0); $ids = array_filter($ids); } try { if (count($ids)) { //删除逻辑 if (\app\model\Account::whereIn('ClockLog', $ids)->count() > 0) { return $this->json(4000, '所选岗位已分配给用户,请先移除后再删除'); } ClockLog::whereIn('id', $ids)->delete(); Log::write(get_class(), 'del', '删除操作,涉及到的ID为:'.implode(',', $ids)); } } catch (Exception $e) { return $this->json(5000, $e->getMessage()); } return $this->json(); } }