You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.5 KiB
89 lines
2.5 KiB
<?php |
|
/** |
|
* |
|
* Resource.php |
|
* User: ChenLong |
|
* DateTime: 2020-05-06 16:43 |
|
*/ |
|
|
|
namespace app\admin\controller; |
|
|
|
use sdModule\layuiSearch\SearchForm; |
|
use sdModule\layuiSearch\generate\TimeRange; |
|
|
|
class Resource extends \app\common\controller\Admin |
|
{ |
|
public $page_name = ""; |
|
|
|
|
|
/** |
|
* 列表数据接口 |
|
* @return array|\Closure|mixed|string|\think\Collection|\think\response\Json |
|
* @throws \think\db\exception\DataNotFoundException |
|
* @throws \think\db\exception\DbException |
|
* @throws \think\db\exception\ModelNotFoundException |
|
* @throws \Exception |
|
*/ |
|
public function listData() |
|
{ |
|
return $this->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(), |
|
|
|
]; |
|
} |
|
|
|
|
|
|
|
}
|
|
|