238 lines
8.5 KiB
PHP
238 lines
8.5 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
use fast\Tree;
|
|
use think\Db;
|
|
use think\exception\PDOException;
|
|
use think\exception\ValidateException;
|
|
|
|
/**
|
|
* 项目列管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Source extends Backend
|
|
{
|
|
|
|
/**
|
|
* Source模型对象
|
|
* @var \app\admin\model\Source
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\Source;
|
|
$this->view->assign("statusList", $this->model->getStatusList());
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
|
|
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
|
|
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
|
|
*/
|
|
public function index()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
// 必须将结果集转换为数组
|
|
$search = request()->get('search') ?? false;
|
|
// dd($where);
|
|
$build = Db::name('source')
|
|
->where('status',1);
|
|
if ($search){
|
|
$build->where(function ($query) use ($search){
|
|
$query->where('title','like','%'.$search.'%')
|
|
->whereOr('key_word','like','%'.$search.'%');
|
|
});
|
|
}
|
|
|
|
$ruleList = $build->field('id,pid,level,title,key_word,sort,status')
|
|
// ->order('sort','desc')
|
|
// ->fetchSql(true)
|
|
->select();
|
|
if ($search){
|
|
$pids = array_column($ruleList,'pid') ;
|
|
$pidData = Db::name('source')
|
|
->where('status',1)->whereIn('id',$pids)
|
|
->field('id,pid,level,title,key_word,sort,status')->select();
|
|
$ruleList = array_values(array_reduce(array_merge($ruleList,$pidData), function ($carry, $source) {
|
|
$carry[$source['id']] = $source;
|
|
return $carry;
|
|
}, []));
|
|
}
|
|
|
|
Tree::instance()->init($ruleList)->icon = [' ', ' ', ' '];
|
|
// dd($ruleList);
|
|
$this->sourcedata = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0), 'title');
|
|
foreach ($this->sourcedata as &$v) {
|
|
$v['status'] = $v['status'] ?'normal' : 'aqua';
|
|
}
|
|
unset($v);
|
|
|
|
$list = $this->sourcedata;
|
|
$total = count($this->sourcedata);
|
|
$result = array("total" => $total, "rows" => $list);
|
|
|
|
return json($result);
|
|
}
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
|
|
/**
|
|
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
|
|
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
|
|
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
|
|
*/
|
|
|
|
public function add()
|
|
{
|
|
if (false === $this->request->isPost()) {
|
|
// 必须将结果集转换为数组
|
|
$ruleList = \think\Db::name("source")
|
|
->where('pid',0)
|
|
->field('id,pid,level,title,key_word')
|
|
->order('sort DESC,id ASC')->select();
|
|
|
|
Tree::instance()->init($ruleList)->icon = [' ', ' ', ' '];
|
|
// dd($ruleList);
|
|
$this->sourcedata = Tree::instance()->getTreeList(Tree::instance()
|
|
->getTreeArray(0), 'title');
|
|
$sourcedata = [0 => __('None')];
|
|
foreach ($this->sourcedata as $k => $v) {
|
|
$sourcedata[$v['id']] = $v['title'];
|
|
unset($v['spacer']);
|
|
}
|
|
unset($v);
|
|
|
|
$this->view->assign('sourcedata', $sourcedata);
|
|
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);
|
|
|
|
if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
|
|
$params[$this->dataLimitField] = $this->auth->id;
|
|
}
|
|
$result = false;
|
|
Db::startTrans();
|
|
try {
|
|
//是否采用模型验证
|
|
if ($this->modelValidate) {
|
|
$name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
|
|
$validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
|
|
$this->model->validateFailException()->validate($validate);
|
|
}
|
|
|
|
$pid = $params['pid'];
|
|
if ($pid > 0){
|
|
$parent = $this->model->where('id',$pid)->find();
|
|
if ($parent){
|
|
$params['level'] = $parent->value('level') + 1;
|
|
}
|
|
}else{
|
|
$params['level'] = 0;
|
|
}
|
|
|
|
|
|
$result = $this->model->allowField(true)->save($params);
|
|
Db::commit();
|
|
} catch (ValidateException|PDOException|Exception $e) {
|
|
Db::rollback();
|
|
$this->error($e->getMessage());
|
|
}
|
|
if ($result === false) {
|
|
$this->error(__('No rows were inserted'));
|
|
}
|
|
$this->success();
|
|
}
|
|
|
|
public function search(){
|
|
|
|
$keyword = request()->get('keyword');
|
|
if (!$keyword){
|
|
$this->success(data:[]);
|
|
}else{
|
|
$data = model('source')
|
|
->where('level','=',2)
|
|
->where(function ($query)use ($keyword){
|
|
$query->where('title','like','%'.$keyword.'%')
|
|
->whereOr('key_word', 'like', "%{$keyword}%");
|
|
})
|
|
->order('level','desc')
|
|
->field('title,id,key_word')
|
|
->limit(0,10)
|
|
->select();
|
|
$this->success(data:$data);
|
|
}
|
|
|
|
}
|
|
|
|
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()) {
|
|
// 必须将结果集转换为数组
|
|
$ruleList = \think\Db::name("source")
|
|
->where('pid',0)
|
|
->field('id,pid,level,title,key_word')
|
|
->order('sort DESC,id ASC')->select();
|
|
|
|
Tree::instance()->init($ruleList)->icon = [' ', ' ', ' '];
|
|
// dd($ruleList);
|
|
$this->sourcedata = Tree::instance()->getTreeList(Tree::instance()
|
|
->getTreeArray(0), 'title');
|
|
$sourcedata = [0 => __('None')];
|
|
foreach ($this->sourcedata as $k => $v) {
|
|
$sourcedata[$v['id']] = $v['title'];
|
|
unset($v['spacer']);
|
|
}
|
|
unset($v);
|
|
|
|
$this->view->assign('sourcedata', $sourcedata);
|
|
$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));
|
|
$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();
|
|
}
|
|
|
|
}
|