setField('i.id,i.type,i.tag,i.pid,i.md5,i.create_time,i.update_time,i.delete_time') ->listsRequest(); } /** * 数据新增页面 * @return mixed|string * @throws \Exception */ public function add() { return $this->fetch('', [ 'type_data' => \app\admin\model\Resource::getTypeSc(false), ]); } /** * 数据编辑页面 * @param int $id * @return array|mixed|\think\response\View * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @throws \Exception */ public function edit($id = 0) { return $this->fetch('', [ 'type_data' => \app\admin\model\Resource::getTypeSc(false), 'data' => $this->getModel()->where([ 'id' => $id, 'delete_time' => '0', ])->findOrEmpty()->getData(), ]); } /** * 搜索表单生成 * @return array|mixed */ public function setSearchForm() { return [ SearchForm::Text("i.id", "ID")->label(true)->html(), SearchForm::Select("i.type", "类型")->label(true)->html(\app\admin\model\Resource::getTypeSc(false)), SearchForm::Text("i.tag%%", "标签")->label(true)->html(), SearchForm::Text("i.pid", "上级")->label(true)->html(), SearchForm::Text("i.md5%%", "md5值")->label(true)->html(), SearchForm::TimeRange("i.create_time_~", "创建时间")->label(true)->html(TimeRange::TYPE_DATETIME), SearchForm::TimeRange("i.update_time_~", "修改时间")->label(true)->html(TimeRange::TYPE_DATETIME), SearchForm::Text("i.delete_time", "删除时间")->label(true)->html(), ]; } }