mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
165 lines
4.8 KiB
PHP
165 lines
4.8 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | EasyAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | PHP交流群: 763822524
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 https://mit-license.org
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zhongshaofa/EasyAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\traits;
|
||
|
||
use EasyAdmin\annotation\NodeAnotation;
|
||
|
||
|
||
/**
|
||
* 后台CURD复用
|
||
* Trait Curd
|
||
* @package app\admin\traits
|
||
*/
|
||
trait Curd
|
||
{
|
||
|
||
|
||
/**
|
||
* @NodeAnotation(title="列表")
|
||
*/
|
||
public function index()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
if (input('selectFields')) {
|
||
return $this->selectList();
|
||
}
|
||
list($page, $limit, $where) = $this->buildTableParames();
|
||
$count = $this->model
|
||
->where($where)
|
||
->count();
|
||
$list = $this->model
|
||
->where($where)
|
||
->page($page, $limit)
|
||
->order($this->sort)
|
||
->select();
|
||
$data = [
|
||
'code' => 0,
|
||
'msg' => '',
|
||
'count' => $count,
|
||
'data' => $list,
|
||
];
|
||
return json($data);
|
||
}
|
||
return $this->fetch();
|
||
}
|
||
|
||
/**
|
||
* @NodeAnotation(title="添加")
|
||
*/
|
||
public function add()
|
||
{
|
||
if ($this->request->isPost()) {
|
||
$post = $this->request->post();
|
||
$rule = [];
|
||
$this->validate($post, $rule);
|
||
try {
|
||
$save = $this->model->save($post);
|
||
} catch (\Exception $e) {
|
||
$this->error('保存失败:' . $e->getMessage());
|
||
}
|
||
$save ? $this->success('保存成功') : $this->error('保存失败');
|
||
}
|
||
return $this->fetch();
|
||
}
|
||
|
||
/**
|
||
* @NodeAnotation(title="编辑")
|
||
*/
|
||
public function edit($id)
|
||
{
|
||
$row = $this->model->find($id);
|
||
empty($row) && $this->error('数据不存在');
|
||
if ($this->request->isPost()) {
|
||
$post = $this->request->post();
|
||
$rule = [];
|
||
$this->validate($post, $rule);
|
||
try {
|
||
$save = $row->save($post);
|
||
} catch (\Exception $e) {
|
||
$this->error('保存失败');
|
||
}
|
||
$save ? $this->success('保存成功') : $this->error('保存失败');
|
||
}
|
||
$this->assign('row', $row);
|
||
return $this->fetch();
|
||
}
|
||
|
||
/**
|
||
* @NodeAnotation(title="删除")
|
||
*/
|
||
public function delete($id)
|
||
{
|
||
$this->checkPostRequest();
|
||
$row = $this->model->whereIn('id', $id)->select();
|
||
$row->isEmpty() && $this->error('数据不存在');
|
||
try {
|
||
$save = $row->delete();
|
||
} catch (\Exception $e) {
|
||
$this->error('删除失败');
|
||
}
|
||
$save ? $this->success('删除成功') : $this->error('删除失败');
|
||
}
|
||
|
||
/**
|
||
* @NodeAnotation(title="导出")
|
||
*/
|
||
public function export()
|
||
{
|
||
list($page, $limit, $where) = $this->buildTableParames();
|
||
|
||
$fields = $this->request->param('fields', '{}', null);
|
||
$image_fields = $this->request->param('image_fields', '{}', null);
|
||
$select_fields = $this->request->param('select_fields', '{}', null);
|
||
$date_fields = $this->request->param('date_fields', '{}', null);
|
||
|
||
$fields = json_decode($fields, true);
|
||
$image_fields = json_decode($image_fields, true);
|
||
$select_fields = json_decode($select_fields, true);
|
||
$date_fields = json_decode($date_fields, true);
|
||
|
||
$content = \app\common\tools\ExcelTools::exportModel($this->model, $where, $fields, $image_fields, $select_fields, $date_fields);
|
||
|
||
return download($content, $this->model->getName() . date('YmdHis') . '.xlsx', true);
|
||
}
|
||
|
||
/**
|
||
* @NodeAnotation(title="属性修改")
|
||
*/
|
||
public function modify()
|
||
{
|
||
$this->checkPostRequest();
|
||
$post = $this->request->post();
|
||
$rule = [
|
||
'id|ID' => 'require',
|
||
'field|字段' => 'require',
|
||
'value|值' => 'require',
|
||
];
|
||
$this->validate($post, $rule);
|
||
$row = $this->model->find($post['id']);
|
||
if (!$row) {
|
||
$this->error('数据不存在');
|
||
}
|
||
if (!in_array($post['field'], $this->allowModifyFields)) {
|
||
$this->error('该字段不允许修改:' . $post['field']);
|
||
}
|
||
try {
|
||
$row->save([
|
||
$post['field'] => $post['value'],
|
||
]);
|
||
} catch (\Exception $e) {
|
||
$this->error($e->getMessage());
|
||
}
|
||
$this->success('保存成功');
|
||
}
|
||
}
|