159 lines
4.5 KiB
PHP
159 lines
4.5 KiB
PHP
<?php
|
||
|
||
namespace app\admin\controller\xilufitness\course;
|
||
|
||
use app\admin\controller\xilufitness\traits\Fitness;
|
||
use app\common\controller\Backend;
|
||
use think\Db;
|
||
use think\exception\DbException;
|
||
use think\exception\PDOException;
|
||
use think\exception\ValidateException;
|
||
use think\response\Json;
|
||
|
||
/**
|
||
* 活动列管理
|
||
*
|
||
* @icon fa fa-circle-o
|
||
*/
|
||
class Camp extends Backend
|
||
{
|
||
use Fitness;
|
||
/**
|
||
* Camp模型对象
|
||
* @var \app\admin\model\xilufitness\course\Camp
|
||
*/
|
||
protected $model = null;
|
||
|
||
/**
|
||
* 开启模型验证
|
||
*/
|
||
protected $modelValidate = true;
|
||
protected $modelSceneValidate = true;
|
||
|
||
/**
|
||
* 开启关联查询
|
||
*/
|
||
|
||
protected $relationSearch = true;
|
||
|
||
/**
|
||
* 快捷搜索
|
||
*/
|
||
protected $searchFields = 'camp.title,brand.brand_name';
|
||
|
||
public function _initialize()
|
||
{
|
||
parent::_initialize();
|
||
$this->model = new \app\admin\model\xilufitness\course\Camp;
|
||
$this->view->assign("statusList", $this->model->getStatusList());
|
||
$this->assign('fitness_brand_id',$this->getFitnessBrandId());
|
||
}
|
||
|
||
/**
|
||
* 查看
|
||
*
|
||
* @return string|Json
|
||
* @throws \think\Exception
|
||
* @throws DbException
|
||
*/
|
||
public function index()
|
||
{
|
||
//设置过滤方法
|
||
$this->request->filter(['strip_tags', 'trim']);
|
||
if (false === $this->request->isAjax()) {
|
||
return $this->view->fetch();
|
||
}
|
||
//如果发送的来源是 Selectpage,则转发到 Selectpage
|
||
if ($this->request->request('keyField')) {
|
||
return $this->selectpage();
|
||
}
|
||
[$where, $sort, $order, $offset, $limit] = $this->buildparams();
|
||
$fitness_brand_id = $this->getFitnessBrandId();
|
||
$list = $this->model
|
||
->with(['brand'])
|
||
->where($where)
|
||
->where(function ($query) use($fitness_brand_id){
|
||
if($fitness_brand_id > 0){
|
||
$query->where('brand_id','eq',$fitness_brand_id);
|
||
}
|
||
})
|
||
->order($sort, $order)
|
||
->paginate($limit);
|
||
$result = ['total' => $list->total(), 'rows' => $list->items()];
|
||
return json($result);
|
||
}
|
||
|
||
/**
|
||
* 编辑
|
||
*
|
||
* @param $ids
|
||
* @return string
|
||
* @throws DbException
|
||
* @throws \think\Exception
|
||
*/
|
||
public function edit($ids = null)
|
||
{
|
||
$row = $this->model->get($ids);
|
||
if (!$row) {
|
||
$this->error(__('No Results were found'));
|
||
}
|
||
$adminIds = $this->getDataLimitAdminIds();
|
||
if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
|
||
$this->error(__('You have no permission'));
|
||
}
|
||
if (false === $this->request->isPost()) {
|
||
$this->view->assign('row', $row);
|
||
return $this->view->fetch();
|
||
}
|
||
$params = $this->request->post('row/a');
|
||
if (empty($params)) {
|
||
$this->error(__('Parameter %s can not be empty', ''));
|
||
}
|
||
$params = $this->preExcludeFields($params);
|
||
$result = false;
|
||
Db::startTrans();
|
||
try {
|
||
//是否采用模型验证
|
||
if ($this->modelValidate) {
|
||
$name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
|
||
$campValidate = \think\Loader::validate($name);
|
||
$campValidate->rule([
|
||
'brand_id' => 'require',
|
||
'title' => 'require|unique:xilufitness_camp,title^brand_id,'.$row->id,
|
||
'thumb_image' => 'require',
|
||
'lable_ids' => 'require',
|
||
'content' => 'require',
|
||
]);
|
||
$validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
|
||
$row->validateFailException()->validate($validate);
|
||
}
|
||
$result = $row->allowField(true)->save($params);
|
||
Db::commit();
|
||
} catch (ValidateException|PDOException|Exception $e) {
|
||
Db::rollback();
|
||
$this->error($e->getMessage());
|
||
}
|
||
if (false === $result) {
|
||
$this->error(__('No rows were updated'));
|
||
}
|
||
$this->success();
|
||
}
|
||
|
||
|
||
//回收站列表
|
||
public function recyclebin() {
|
||
return;
|
||
}
|
||
//回收站(真实删除或清空)
|
||
public function destroy($ids = null) {
|
||
return;
|
||
}
|
||
//回收站还原
|
||
public function restore($ids = null) {
|
||
return;
|
||
}
|
||
|
||
|
||
|
||
}
|