layTable(function () { $this->title = '数据字典管理'; $this->types = SystemBase::mk()->types(); $this->type = input('get.type', $this->types[0] ?? '-'); }, function (QueryHelper $query) { $query->where(['deleted' => 0])->equal('type'); $query->like('code,name,status')->dateBetween('create_at'); }); } /** * 添加数据字典 * @auth true */ public function add() { SystemBase::mForm('form'); } /** * 编辑数据字典 * @auth true */ public function edit() { SystemBase::mForm('form'); } /** * 表单数据处理 * @param array $data */ protected function _form_filter(array &$data) { if ($this->request->isGet()) { $this->types = SystemBase::mk()->types(); $this->types[] = '--- 新增类型 ---'; $this->type = input('get.type') ?: ($this->types[0] ?? '-'); } else { $map = []; $map[] = ['deleted', '=', 0]; $map[] = ['code', '=', $data['code']]; $map[] = ['type', '=', $data['type']]; if (isset($data['id'])) $map[] = ['id', '<>', $data['id']]; if (SystemBase::mk()->where($map)->count() > 0) { $this->error("同类型的数据编码已经存在!"); } } } /** * 修改数据状态 * @auth true */ public function state() { SystemBase::mSave(); } /** * 删除数据记录 * @auth true */ public function remove() { SystemBase::mDelete(); } }