132 lines
3.6 KiB
PHP
Executable File
132 lines
3.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* 测试控制器
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use think\Request;
|
|
use app\common\model\Test;
|
|
|
|
use app\common\validate\TestValidate;
|
|
|
|
class TestController extends Controller
|
|
{
|
|
|
|
//列表
|
|
public function index(Request $request, Test $model)
|
|
{
|
|
$param = $request->param();
|
|
$model = $model->scope('where', $param);
|
|
if (isset($param['export_data']) && $param['export_data'] == 1) {
|
|
$header = ['ID','',];
|
|
$body = [];
|
|
$data = $model->select();
|
|
foreach ($data as $item) {
|
|
$record = [];
|
|
$record['id'] = $item->id;
|
|
$record['name'] = $item->name;
|
|
|
|
$body[] = $record;
|
|
}
|
|
return $this->exportData($header, $body, 'test-' . date('Y-m-d-H-i-s'));
|
|
}
|
|
$data = $model->paginate($this->admin['per_page'], false, ['query'=>$request->get()]);
|
|
//关键词,排序等赋值
|
|
$this->assign($request->get());
|
|
|
|
$this->assign([
|
|
'data' => $data,
|
|
'page' => $data->render(),
|
|
'total' => $data->total(),
|
|
]);
|
|
return $this->fetch();
|
|
}
|
|
|
|
//添加
|
|
public function add(Request $request, Test $model, TestValidate $validate)
|
|
{
|
|
if ($request->isPost()) {
|
|
$param = $request->param();
|
|
$validate_result = $validate->scene('add')->check($param);
|
|
if (!$validate_result) {
|
|
return error($validate->getError());
|
|
}
|
|
|
|
$result = $model::create($param);
|
|
|
|
$url = URL_BACK;
|
|
if(isset($param['_create']) && $param['_create']==1){
|
|
$url = URL_RELOAD;
|
|
}
|
|
|
|
return $result ? success('添加成功',$url) : error();
|
|
}
|
|
|
|
|
|
|
|
return $this->fetch();
|
|
}
|
|
|
|
//修改
|
|
public function edit($id, Request $request, Test $model, TestValidate $validate)
|
|
{
|
|
|
|
$data = $model::get($id);
|
|
if ($request->isPost()) {
|
|
$param = $request->param();
|
|
$validate_result = $validate->scene('edit')->check($param);
|
|
if (!$validate_result) {
|
|
return error($validate->getError());
|
|
}
|
|
|
|
$result = $data->save($param);
|
|
return $result ? success() : error();
|
|
}
|
|
|
|
$this->assign([
|
|
'data' => $data,
|
|
|
|
]);
|
|
return $this->fetch('add');
|
|
|
|
}
|
|
|
|
//删除
|
|
public function del($id, Test $model)
|
|
{
|
|
if (count($model->noDeletionId) > 0) {
|
|
if (is_array($id)) {
|
|
if (array_intersect($model->noDeletionId, $id)) {
|
|
return error('ID为' . implode(',', $model->noDeletionId) . '的数据无法删除');
|
|
}
|
|
} else if (in_array($id, $model->noDeletionId)) {
|
|
return error('ID为' . $id . '的数据无法删除');
|
|
}
|
|
}
|
|
|
|
if ($model->softDelete) {
|
|
$result = $model->whereIn('id', $id)->useSoftDelete('delete_time', time())->delete();
|
|
} else {
|
|
$result = $model->whereIn('id', $id)->delete();
|
|
}
|
|
|
|
return $result ? success('操作成功', URL_RELOAD) : error();
|
|
}
|
|
|
|
//启用
|
|
public function enable($id,Test $model)
|
|
{
|
|
$result = $model->whereIn('id',$id)->update(['status'=>1]);
|
|
return $result ? success('操作成功', URL_RELOAD) : error();
|
|
}
|
|
|
|
|
|
//禁用
|
|
public function disable($id,Test $model)
|
|
{
|
|
$result = $model->whereIn('id',$id)->update(['status'=>0]);
|
|
return $result ? success('操作成功', URL_RELOAD) : error();
|
|
}
|
|
}
|