diff --git a/app/admin/common.php b/app/admin/common.php index de46a8e..4571caa 100644 --- a/app/admin/common.php +++ b/app/admin/common.php @@ -162,6 +162,52 @@ function get_admin_group_info($id) return $rules; } +//读取部门列表 +function get_department() +{ + $department = Db::name('Department')->where(['status' => 1])->select()->toArray(); + return $department; +} + +//获取某部门的子部门id.$is_self时候包含自己 +function get_department_son($did = 0, $is_self = 1) +{ + $department = get_department(); + $department_list = get_data_node($department, $did); + $department_array = array_column($department_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $department_array[] = $did; + } + return $department_array; +} + +//读取员工所在部门的负责人 +function get_department_leader($uid=0,$pid=0) +{ + $did = get_admin($uid)['did']; + if($pid==0){ + $leader = Db::name('Department')->where(['id' => $did])->value('leader_id'); + } + else{ + $pdid = Db::name('Department')->where(['id' => $did])->value('pid'); + if($pdid == 0){ + $leader = 0; + } + else{ + $leader = Db::name('Department')->where(['id' => $pdid])->value('leader_id'); + } + } + return $leader; +} + +//读取职位 +function get_position() +{ + $position = Db::name('Position')->where(['status' => 1])->select()->toArray(); + return $position; +} + //读取导航列表,用于后台 function get_nav($nav_id) { @@ -183,6 +229,13 @@ function get_article_cate() return $cate; } +//读取图集分类列表 +function get_gallery_cate() +{ + $cate = Db::name('GalleryCate')->order('create_time asc')->select()->toArray(); + return $cate; +} + //读取商品分类列表 function get_goods_cate() { @@ -247,7 +300,7 @@ function add_log($type, $param_id = '', $param = []) $data['param_id'] = $param_id; $data['param'] = json_encode($param); $data['module'] = strtolower(app('http')->getName()); - $data['controller'] = strtolower(app('request')->controller()); + $data['controller'] = uncamelize(app('request')->controller()); $data['function'] = strtolower(app('request')->action()); $parameter = $data['module'] . '/' . $data['controller'] . '/' . $data['function']; $rule_menu = Db::name('AdminRule')->where(array('src' => $parameter))->find(); diff --git a/app/admin/controller/Admin.php b/app/admin/controller/Admin.php index 16105b8..6ea21cc 100644 --- a/app/admin/controller/Admin.php +++ b/app/admin/controller/Admin.php @@ -137,10 +137,14 @@ class Admin extends BaseController } else{ $id = empty(get_params('id')) ? 0 : get_params('id'); + $department = set_recursion(get_department()); + $position = Db::name('Position')->where('status', '>=', 0)->order('create_time asc')->select(); if ($id > 0) { $admin = get_admin(get_params('id')); View::assign('admin', $admin); } + View::assign('department', $department); + View::assign('position', $position); View::assign('id', $id); return view(); } @@ -217,7 +221,10 @@ class Admin extends BaseController $rules = array_unique($rules); $role_rule = create_tree_list(0, $rule, $rules); - + $department = get_department(); + $position = Db::name('Position')->where('status', '>=', 0)->order('create_time asc')->select(); + View::assign('department', $department); + View::assign('position', $position); View::assign('role_rule', $role_rule); View::assign('admin', get_admin($id)); add_log('view', get_params('id')); diff --git a/app/admin/controller/Api.php b/app/admin/controller/Api.php index 4765a61..20ce1b4 100644 --- a/app/admin/controller/Api.php +++ b/app/admin/controller/Api.php @@ -231,13 +231,20 @@ class Api extends BaseController public function email_test() { $sender = get_params('email'); - //检查是否邮箱格式 - if (!is_email($sender)) { - return to_assign(1, '测试邮箱码格式有误'); - } - $email_config = \think\facade\Db::name('config') - ->where('name', 'email') - ->find(); + //检查是否邮箱格式 + $validate = \think\facade\Validate::rule([ + 'email' => 'email' + ]); + + $data = [ + 'email' => $sender + ]; + + if (!$validate->check($data)) { + return to_assign(1, $validate->getError()); + } + + $email_config = \think\facade\Db::name('config')->where('name', 'email')->find(); $config = unserialize($email_config['content']); $content = $config['template']; //所有项目必须填写 @@ -286,8 +293,8 @@ class Api extends BaseController $list = Db::name('Article') ->field('a.id,a.title,a.read,a.status,a.create_time,c.title as cate_title') ->alias('a') - ->join('article_cate c', 'a.article_cate_id = c.id') - ->where(['a.status' => 1]) + ->join('article_cate c', 'a.cate_id = c.id') + ->where(['a.delete_time' => 0]) ->order('a.id desc') ->limit(10) ->select()->toArray(); diff --git a/app/admin/controller/Article.php b/app/admin/controller/Article.php index 7eab05b..ef856f0 100644 --- a/app/admin/controller/Article.php +++ b/app/admin/controller/Article.php @@ -10,144 +10,54 @@ declare (strict_types = 1); namespace app\admin\controller; use app\admin\BaseController; -use app\admin\model\Article as ArticleList; -use app\admin\model\ArticleCate; -use app\admin\model\Keywords; -use app\admin\validate\ArticleCateCheck; -use app\admin\validate\ArticleCheck; +use app\admin\model\Article as ArticleModel; +use app\admin\validate\ArticleValidate; use think\exception\ValidateException; use think\facade\Db; use think\facade\View; class Article extends BaseController + { - public function cate() + /** + * 构造函数 + */ + public function __construct() + { + $this->model = new ArticleModel(); + $this->uid = get_login_admin('id'); + } + /** + * 数据列表 + */ + public function datalist() { if (request()->isAjax()) { - $cate = Db::name('ArticleCate')->order('create_time asc')->select(); - return to_assign(0, '', $cate); + $param = get_params(); + $where = []; + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.title|a.keywords|a.desc|a.content|c.title', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['cate_id'])) { + $where[] = ['a.cate_id', '=', $param['cate_id']]; + } + $where[] = ['a.delete_time', '=', 0]; + $ArticleModel = new ArticleModel(); + $list = $ArticleModel->getArticleList($where, $param); + return table_assign(0, '', $list); } else{ return view(); - } - } - - //获取子分类id.$is_self=1包含自己 - public function get_cate_son($id = 0, $is_self = 1) - { - $cates = Db::name('ArticleCate')->order('create_time asc')->select()->toArray(); - $cates_list = get_data_node($cates, $id); - $cates_array = array_column($cates_list, 'id'); - if ($is_self == 1) { - //包括自己在内 - $cates_array[] = $id; - } - return $cates_array; - } - - //文章分类添加 - public function cate_add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(ArticleCateCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $department_array = $this->get_cate_son($param['id']); - if (in_array($param['pid'], $department_array)) { - return to_assign(1, '上级分类不能是该分类本身或其子分类'); - } else { - $res = ArticleCate::strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - return to_assign(); - } - } else { - try { - validate(ArticleCateCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $insertId = ArticleCate::strict(false)->field(true)->insertGetId($param); - if ($insertId) { - add_log('add', $insertId, $param); - } - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - $pid = isset($param['pid']) ? $param['pid'] : 0; - if ($id > 0) { - $cate = Db::name('ArticleCate')->where(['id' => $id])->find(); - $pid = $cate['pid']; - View::assign('cate', $cate); - } - View::assign('id', $id); - View::assign('pid', $pid); - return view(); - } - } - - //删除文章分类 - public function cate_delete() - { - $id = get_params("id"); - $cate_count = Db::name('ArticleCate')->where(["pid" => $id])->count(); - if ($cate_count > 0) { - return to_assign(1, "该分类下还有子分类,无法删除"); - } - $content_count = Db::name('Article')->where(["article_cate_id" => $id])->count(); - if ($content_count > 0) { - return to_assign(1, "该分类下还有文章,无法删除"); - } - if (Db::name('ArticleCate')->delete($id) !== false) { - add_log('delete', $id); - return to_assign(0, "删除分类成功"); - } else { - return to_assign(1, "删除失败"); } } - public function index() - { - if (request()->isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['a.id|a.title|a.keywords|a.desc|a.content|w.title', 'like', '%' . $param['keywords'] . '%']; - } - if (!empty($param['article_cate_id'])) { - $where[] = ['a.article_cate_id', '=', $param['article_cate_id']]; - } - $where[] = ['a.status', '>=', 0]; - $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; - $content = ArticleList::where($where) - ->field('a.*,w.id as cate_id,a.id as id,w.title as cate_title,a.title as title') - ->alias('a') - ->join('article_cate w', 'a.article_cate_id = w.id') - ->order('a.create_time desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $content); - } - else{ - return view(); - } - } - - //文章添加&&编辑 + /** + * 添加 + */ public function add() { - $param = get_params(); - if (request()->isAjax()) { + if (request()->isAjax()) { + $param = get_params(); if (isset($param['table-align'])) { unset($param['table-align']); } @@ -160,100 +70,121 @@ class Article extends BaseController unset($param['docContent-html-code']); unset($param['docContent-markdown-doc']); } - $DbRes=false; - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(ArticleCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - Db::startTrans(); - try { - ArticleList::strict(false)->field(true)->update($param); - $aid = $param['id']; - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - Db::name('ArticleKeywords')->where(['aid'=>$aid])->delete(); - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new ArticleList())->insertKeyword($keywordArray,$aid); - } - add_log('edit', $aid, $param); - Db::commit(); - $DbRes=true; - } - catch (\Exception $e) { - //回滚事务 - $DbRes = false; - Db::rollback(); - return to_assign(1,'捕获到异常'.$e->getMessage()); - } - } else { - try { - validate(ArticleCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - Db::startTrans(); - try { - if(empty($param['desc'])){ - $param['desc'] = getDescriptionFromContent($param['content'], 100); - } - $aid = ArticleList::strict(false)->field(true)->insertGetId($param); - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new ArticleList())->insertKeyword($keywordArray,$aid); - } - add_log('add', $aid, $param); - Db::commit(); - $DbRes=true; - } - catch (\Exception $e) { - //回滚事务 - $DbRes = false; - Db::rollback(); - return to_assign(1,'捕获到异常'.$e->getMessage()); - } + $param['admin_id'] = $this->uid; + // 检验完整性 + try { + validate(ArticleValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); } - if($DbRes){ - return to_assign(); - } - else{ - return to_assign(1,'操作失败'); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - View::assign('id', $id); + + $ArticleModel = new ArticleModel(); + $ArticleModel->addArticle($param); + }else{ View::assign('editor', get_system_config('other','editor')); - if ($id > 0) { - $article = (new ArticleList())->detail($id); - if(empty($article['md_content'])){ - View::assign('editor',1); - } - View::assign('article', $article); - return view('edit'); - } return view(); } } + - //删除文章 - public function delete() + /** + * 编辑 + */ + public function edit() { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Article')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } + $param = get_params(); + $ArticleModel = new ArticleModel(); + + if (request()->isAjax()) { + if (isset($param['table-align'])) { + unset($param['table-align']); + } + if (isset($param['content'])) { + $param['md_content'] = ''; + } + if (isset($param['docContent-html-code'])) { + $param['content'] = $param['docContent-html-code']; + $param['md_content'] = $param['docContent-markdown-doc']; + unset($param['docContent-html-code']); + unset($param['docContent-markdown-doc']); + } + // 检验完整性 + try { + validate(ArticleValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $ArticleModel->editArticle($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $ArticleModel->getArticleById($id); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + if(!empty($article['md_content'])){ + View::assign('editor',1); + } + $keyword_array = Db::name('ArticleKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); + $detail['keyword_array'] = $keyword_array; + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $ArticleModel = new ArticleModel(); + $detail = $ArticleModel->getArticleById($id); + if (!empty($detail)) { + $keyword_array = Db::name('ArticleKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); + $detail['keyword_array'] = $keyword_array; + + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $ArticleModel = new ArticleModel(); + $ArticleModel->delArticleById($id,$type); + } } diff --git a/app/admin/controller/ArticleCate.php b/app/admin/controller/ArticleCate.php new file mode 100644 index 0000000..00c54bc --- /dev/null +++ b/app/admin/controller/ArticleCate.php @@ -0,0 +1,149 @@ +model = new ArticleCateModel(); + } + /** + * 数据列表 + */ + public function datalist() + { + if (request()->isAjax()) { + $list = $this->model->where('delete_time',0)->order('sort asc')->select(); + return to_assign(0, '', $list); + } + else{ + return view(); + } + } + + //获取子分类id.$is_self=1包含自己 + public function get_cate_son($id = 0, $is_self = 1) + { + $cates = $this->model->where('delete_time',0)->order('sort asc')->select()->toArray(); + $cates_list = get_data_node($cates, $id); + $cates_array = array_column($cates_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $cates_array[] = $id; + } + return $cates_array; + } + + /** + * 添加 + */ + public function add() + { + $param = get_params(); + if (request()->isAjax()) { + + // 检验完整性 + try { + validate(ArticleCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $this->model->addArticleCate($param); + }else{ + $pid = isset($param['pid']) ? $param['pid'] : 0; + View::assign('pid', $pid); + return view(); + } + } + + + /** + * 编辑 + */ + public function edit() + { + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(ArticleCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $cate_array = $this->get_cate_son($param['id']); + if (in_array($param['pid'], $cate_array)) { + return to_assign(1, '上级分类不能是该分类本身或其子分类'); + } + $this->model->editArticleCate($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getArticleCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getArticleCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + $count_cate = Db::name('ArticleCate')->where(["pid"=>$id,"delete_time"=>0])->count(); + if ($count_cate > 0) { + return to_assign(1, "该分类下还有子分类,无法删除"); + } + $count_article = Db::name('Article')->where(["cate_id" => $id,"delete_time"=>0])->count(); + if ($count_article > 0) { + return to_assign(1, "该分类下还有文章,无法删除"); + } + $this->model->delArticleCateById($id,$type); + } +} diff --git a/app/admin/controller/Crud.php b/app/admin/controller/Crud.php new file mode 100644 index 0000000..0434ad2 --- /dev/null +++ b/app/admin/controller/Crud.php @@ -0,0 +1,250 @@ +&$val) { + $val['a'] = strpos($val['Comment'],'::crud'); + if(strpos($val['Comment'],'::crud') == false){ + unset($table_info[$k]); + continue; + } + $val['title'] = str_replace($prefix,'',$val['Name']); + $val['crud'] = $this->check($val['title']); + $val['Comment'] = str_replace('::crud','',$val['Comment']); + } + View::assign('prefix',$prefix); + View::assign('table_info',$table_info); + return view(); + } + + public function check($table,$type='c',$path='admin') + { + !defined('DS') && define('DS', DIRECTORY_SEPARATOR); + if($type == 'c'){ + $table = ucfirst(camelize($table)); + $filePath = 'app'. DS . $path . DS . 'controller' . DS . $table . '.php'; + $realPath = base_path() . $path . DS . 'controller' . DS . $table . '.php'; + } + if($type == 'm'){ + $table = ucfirst(camelize($table)); + $filePath = 'app'. DS . $path . DS . 'model' . DS . $table . '.php'; + $realPath = base_path() . $path . DS . 'model' . DS . $table . '.php'; + } + if($type == 'v'){ + $table = ucfirst(camelize($table)) . 'Validate'; + $filePath = 'app'. DS . $path . DS . 'validate' . DS . $table . '.php'; + $realPath = base_path() . $path . DS . 'validate' . DS . $table . '.php'; + } + if($type == 'l'){ + $filePath = 'app'. DS . $path . DS . 'view' . DS . $table . DS . 'datalist.html'; + $realPath = base_path() . $path . DS . 'view' . DS . $table . DS . 'datalist.html'; + } + if($type == 'a'){ + $filePath = 'app'. DS . $path . DS . 'view' . DS . $table . DS . 'add.html'; + $realPath = base_path() . $path . DS . 'view' . DS . $table . DS . 'add.html'; + } + if($type == 'e'){ + $filePath = 'app'. DS . $path . DS . 'view' . DS . $table . DS . 'edit.html'; + $realPath = base_path() . $path . DS . 'view' . DS . $table . DS . 'edit.html'; + } + if($type == 'r'){ + $filePath = 'app'. DS . $path . DS . 'view' . DS . $table . DS . 'read.html'; + $realPath = base_path() . $path . DS . 'view' . DS . $table . DS . 'read.html'; + } + if (file_exists($realPath)) { + return $filePath; + } + else{ + return 0; + } + } + + //crud + public function table() + { + $param = get_params(); + $prefix = config('database.connections.mysql.prefix'); + //查询指定表信息 + $table_info = Db::query('SHOW TABLE STATUS LIKE ' . "'" . $param['name'] . "'"); + $detail = $table_info[0]; + $detail['title'] = str_replace($prefix,'',$detail['Name']); + $detail['Comment'] = str_replace('::crud','',$detail['Comment']); + $table_columns = Db::query("SHOW FULL COLUMNS FROM " . $param['name']); + //var_dump($table_info);exit; + //var_dump($table_columns);exit; + $detail['c'] = $this->check($detail['title'], $type='c'); + $detail['m'] = $this->check($detail['title'], $type='m'); + $detail['v'] = $this->check($detail['title'], $type='v'); + $detail['l'] = $this->check($detail['title'], $type='l'); + $detail['a'] = $this->check($detail['title'], $type='a'); + $detail['e'] = $this->check($detail['title'], $type='e'); + $detail['r'] = $this->check($detail['title'], $type='r'); + View::assign('detail', $detail); + View::assign('columns', $table_columns); + return view(); + } + + //一键crud + public function crud() + { + $uid = get_login_admin('id'); + if($uid!=1){ + return to_assign(1,'只有系统超级管理员才有权限使用一键crud功能!'); + } + $param = get_params(); + set_cache('crud_v_'.$param['field'], $param['crud_v']); + set_cache('crud_a_'.$param['field'], $param['crud_a']); + set_cache('crud_e_'.$param['field'], $param['crud_e']); + set_cache('crud_r_'.$param['field'], $param['crud_r']); + set_cache('crud_l_'.$param['field'], $param['crud_l']); + $t = '-t'.$param['field']; + $c = '-c'.$param['field']; + $m = '-m'.$param['name']; + try { + $output = Console::call('crud', [$t,$c,$m]); + //return $output->fetch(); + } catch(\Exception $e) { + clear_cache('crud_v_'.$param['field']); + clear_cache('crud_a_'.$param['field']); + clear_cache('crud_e_'.$param['field']); + clear_cache('crud_r_'.$param['field']); + clear_cache('crud_l_'.$param['field']); + return to_assign(1, $e->getMessage()); + } + } + + //一键生成菜单 + public function menu($field='',$name='') + { + $uid = get_login_admin('id'); + if($uid!=1){ + return to_assign(1,'只有系统超级管理员才有权限使用一键生成菜单功能!'); + } + if(empty($field) || empty($name)){ + return to_assign(1,'参数错误!'); + } + $rule = [ + [ + 'title' => $name.'管理', + 'name' => $name, + 'src' => '', + 'module' => '', + 'crud' => $field, + 'menu' => '1', + 'icon' => 'bi-folder', + 'son' => [ + [ + 'title' => $name.'列表', + 'name' => $name.'列表', + 'src' => 'admin/'.$field.'/datalist', + 'module' => '', + 'crud' => $field, + 'menu' => '1', + 'icon' => '', + 'son' => [ + [ + 'title' => '新建', + 'name' => $name, + 'src' => 'admin/'.$field.'/add', + 'module' => '', + 'crud' => $field, + 'menu' => '2', + 'icon' => '', + 'son' => [] + ], + [ + 'title' => '编辑', + 'name' => $name, + 'src' => 'admin/'.$field.'/edit', + 'module' => '', + 'crud' => $field, + 'menu' => '2', + 'icon' => '', + 'son' => [] + ], + [ + 'title' => '查看', + 'name' => $name, + 'src' => 'admin/'.$field.'/read', + 'module' => '', + 'crud' => $field, + 'menu' => '2', + 'icon' => '', + 'son' => [] + ], + [ + 'title' => '删除', + 'name' => $name, + 'src' => 'admin/'.$field.'/del', + 'module' => '', + 'crud' => $field, + 'menu' => '2', + 'icon' => '', + 'son' => [] + ] + ] + ] + ] + ] + ]; + //如果安装过该模块,删除原来的菜单信息 + Db::name('AdminRule')->where('crud',$field)->delete(); + $sort = Db::name('AdminRule')->where('pid',0)->max('sort'); + $this->add_rule($rule,0,$sort+1); + //更新超级管理员的权限节点 + $rules = Db::name('AdminRule')->column('id'); + $admin_rules = implode(',',$rules); + $res = Db::name('AdminGroup')->strict(false)->where('id',1)->update(['rules'=>$admin_rules,'update_time'=>time()]); + if($res!==false){ + // 删除后台节点缓存 + clear_cache('adminRules'); + return to_assign(); + } + else{ + return to_assign(1,'操作失败'); + } + } + //递归插入菜单数据 + protected function add_rule($data, $pid=0,$sort=0) + { + foreach($data as $k => $v) + { + $rule=[ + 'title' => $v['title'], + 'name' => $v['name'], + 'src' => $v['src'], + 'module' => $v['module'], + 'menu' => $v['menu'], + 'icon' => $v['icon'], + 'crud' => $v['crud'], + 'pid' => $pid, + 'sort' => $sort, + 'create_time' => time() + ]; + $new_id = Db::name('AdminRule')->strict(false)->field(true)->insertGetId($rule); + if(!empty($v['son'] && $new_id)){ + $this->add_rule($v['son'],$new_id); + } + } + } +} diff --git a/app/admin/controller/Department.php b/app/admin/controller/Department.php new file mode 100644 index 0000000..14c0188 --- /dev/null +++ b/app/admin/controller/Department.php @@ -0,0 +1,103 @@ +isAjax()) { + $list = Db::name('Department') + ->field('d.*,a.nickname as leader') + ->alias('d') + ->join('Admin a', 'a.id = d.leader_id', 'LEFT') + ->order('d.id asc') + ->select(); + return to_assign(0, '', $list); + } else { + return view(); + } + } + + //添加部门 + public function add() + { + $param = get_params(); + if (request()->isAjax()) { + if ($param['id'] > 0) { + try { + validate(DepartmentCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['update_time'] = time(); + $department_array = get_department_son($param['id']); + if (in_array($param['pid'], $department_array)) { + return to_assign(1, '上级部门不能是该部门本身或其下属部门'); + } else { + Db::name('Department')->strict(false)->field(true)->update($param); + add_log('edit', $param['id'], $param); + return to_assign(); + } + } else { + try { + validate(DepartmentCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $did = Db::name('Department')->strict(false)->field(true)->insertGetId($param); + add_log('add', $did, $param); + return to_assign(); + } + } else { + $id = isset($param['id']) ? $param['id'] : 0; + $pid = isset($param['pid']) ? $param['pid'] : 0; + $department = set_recursion(get_department()); + if ($id > 0) { + $detail = Db::name('Department')->where(['id' => $id])->find(); + $users = Db::name('Admin')->where(['did' => $id, 'status' => 1])->select(); + View::assign('users', $users); + View::assign('detail', $detail); + } + View::assign('department', $department); + View::assign('pid', $pid); + View::assign('id', $id); + return view(); + } + } + + //删除 + public function delete() + { + $id = get_params("id"); + $count = Db::name('Department')->where([['pid', '=', $id], ['status', '>=', 0]])->count(); + if ($count > 0) { + return to_assign(1, "该部门下还有子部门,无法删除"); + } + $users = Db::name('Admin')->where([['did', '=', $id], ['status', '>=', 0]])->count(); + if ($users > 0) { + return to_assign(1, "该部门下还有员工,无法删除"); + } + if (Db::name('Department')->delete($id) !== false) { + add_log('delete', $id); + return to_assign(0, "删除部门成功"); + } else { + return to_assign(1, "删除失败"); + } + } +} diff --git a/app/admin/controller/Gallery.php b/app/admin/controller/Gallery.php new file mode 100644 index 0000000..424196f --- /dev/null +++ b/app/admin/controller/Gallery.php @@ -0,0 +1,171 @@ +model = new GalleryModel(); + $this->uid = get_login_admin('id'); + } + /** + * 数据列表 + */ + public function datalist() + { + if (request()->isAjax()) { + $param = get_params(); + $where = []; + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.title|a.keywords|a.desc|c.title', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['cate_id'])) { + $where[] = ['a.cate_id', '=', $param['cate_id']]; + } + $where[] = ['a.delete_time', '=', 0]; + $list = $this->model->getGalleryList($where, $param); + return table_assign(0, '', $list); + } + else{ + return view(); + } + } + + /** + * 添加 + */ + public function add() + { + if (request()->isAjax()) { + $param = get_params(); + // 检验完整性 + try { + validate(GalleryValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['admin_id'] = $tis->uid; + $this->model->addGallery($param); + }else{ + return view(); + } + } + + + /** + * 编辑 + */ + public function edit() + { + $param = get_params(); + if (request()->isAjax()) { + // 检验完整性 + try { + validate(GalleryValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $this->model->editGallery($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGalleryById($id); + if (!empty($detail)) { + //关键字 + $keywrod_array = Db::name('GalleryKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keywrod_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keywrod_array, 'title')); + $detail['keyword_array'] = $keywrod_array; + + //图集 + $gallery_array = Db::name('GalleryFile') + ->order('create_time asc') + ->where(array('aid' => $id)) + ->select()->toArray(); + $detail['gallery_array'] = $gallery_array; + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGalleryById($id); + if (!empty($detail)) { + //关键字 + $keywrod_array = Db::name('GalleryKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keywrod_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keywrod_array, 'title')); + $detail['keyword_array'] = $keywrod_array; + + //图集 + $gallery_array = Db::name('GalleryFile') + ->order('create_time asc') + ->where(array('aid' => $id)) + ->select()->toArray(); + $detail['gallery_array'] = $gallery_array; + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $this->model->delGalleryById($id,$type); + } +} diff --git a/app/admin/controller/GalleryCate.php b/app/admin/controller/GalleryCate.php new file mode 100644 index 0000000..3fa6c2f --- /dev/null +++ b/app/admin/controller/GalleryCate.php @@ -0,0 +1,150 @@ +model = new GalleryCateModel(); + } + /** + * 数据列表 + */ + public function datalist() + { + if (request()->isAjax()) { + $list = $this->model->where('delete_time',0)->order('sort asc')->select(); + return to_assign(0, '', $list); + } + else{ + return view(); + } + } + + //获取子分类id.$is_self=1包含自己 + public function get_cate_son($id = 0, $is_self = 1) + { + $cates = $this->model->where('delete_time',0)->order('sort asc')->select()->toArray(); + $cates_list = get_data_node($cates, $id); + $cates_array = array_column($cates_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $cates_array[] = $id; + } + return $cates_array; + } + + /** + * 添加 + */ + public function add() + { + if (request()->isAjax()) { + $param = get_params(); + + // 检验完整性 + try { + validate(GalleryCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + + $this->model->addGalleryCate($param); + }else{ + $pid = isset($param['pid']) ? $param['pid'] : 0; + View::assign('pid', $pid); + return view(); + } + } + + + /** + * 编辑 + */ + public function edit() + { + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(GalleryCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $cate_array = $this->get_cate_son($param['id']); + if (in_array($param['pid'], $cate_array)) { + return to_assign(1, '上级分类不能是该分类本身或其子分类'); + } + $this->model->editGalleryCate($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGalleryCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGalleryCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + $count_cate = Db::name('GalleryCate')->where(["pid"=>$id,"delete_time"=>0])->count(); + if ($count_cate > 0) { + return to_assign(1, "该分类下还有子分类,无法删除"); + } + $count_gallery = Db::name('Gallery')->where(["cate_id" => $id,"delete_time"=>0])->count(); + if ($count_gallery > 0) { + return to_assign(1, "该分类下还有图集,无法删除"); + } + $this->model->delGalleryCateById($id,$type); + } +} diff --git a/app/admin/controller/Goods.php b/app/admin/controller/Goods.php index cbbef50..cd880f9 100644 --- a/app/admin/controller/Goods.php +++ b/app/admin/controller/Goods.php @@ -10,250 +10,214 @@ declare (strict_types = 1); namespace app\admin\controller; use app\admin\BaseController; -use app\admin\model\Goods as GoodsList; -use app\admin\model\GoodsCate; -use app\admin\model\Keywords; -use app\admin\validate\GoodsCateCheck; -use app\admin\validate\GoodsCheck; +use app\admin\model\Goods as GoodsModel; +use app\admin\validate\GoodsValidate; use think\exception\ValidateException; use think\facade\Db; use think\facade\View; class Goods extends BaseController + { - public function cate() + /** + * 构造函数 + */ + public function __construct() + { + $this->model = new GoodsModel(); + $this->uid = get_login_admin('id'); + } + /** + * 数据列表 + */ + public function datalist() { if (request()->isAjax()) { - $cate = Db::name('GoodsCate')->order('create_time asc')->select(); - return to_assign(0, '', $cate); - } - else{ - return view(); - } - } - - //获取子分类id.$is_self=1包含自己 - public function get_cate_son($id = 0, $is_self = 1) - { - $cates = Db::name('GoodsCate')->order('create_time asc')->select()->toArray(); - $cates_list = get_data_node($cates, $id); - $cates_array = array_column($cates_list, 'id'); - if ($is_self == 1) { - //包括自己在内 - $cates_array[] = $id; - } - return $cates_array; - } - - //商品分类添加 - public function cate_add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(GoodsCateCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $department_array = $this->get_cate_son($param['id']); - if (in_array($param['pid'], $department_array)) { - return to_assign(1, '上级分类不能是该分类本身或其子分类'); - } else { - $res = GoodsCate::strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - return to_assign(); - } - } else { - try { - validate(GoodsCateCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $insertId = GoodsCate::strict(false)->field(true)->insertGetId($param); - if ($insertId) { - add_log('add', $insertId, $param); - } - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - $pid = isset($param['pid']) ? $param['pid'] : 0; - if ($id > 0) { - $cate = Db::name('GoodsCate')->where(['id' => $id])->find(); - $pid = $cate['pid']; - View::assign('cate', $cate); - } - View::assign('id', $id); - View::assign('pid', $pid); - return view(); - } - } - - //删除商品分类 - public function cate_delete() - { - $id = get_params("id"); - $cate_count = Db::name('GoodsCate')->where(["pid" => $id])->count(); - if ($cate_count > 0) { - return to_assign(1, "该分类下还有子分类,无法删除"); - } - $content_count = Db::name('Goods')->where(["cate_id" => $id])->count(); - if ($content_count > 0) { - return to_assign(1, "该分类下还有商品,无法删除"); - } - if (Db::name('GoodsCate')->delete($id) !== false) { - add_log('delete', $id); - return to_assign(0, "删除分类成功"); - } else { - return to_assign(1, "删除失败"); - } - } - - public function index() - { - if (request()->isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['a.id|a.title|a.keywords|a.desc|a.content|w.title', 'like', '%' . $param['keywords'] . '%']; + $param = get_params(); + $where = []; + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.title|a.keywords|a.desc|a.content|c.title', 'like', '%' . $param['keywords'] . '%']; } if (!empty($param['cate_id'])) { $where[] = ['a.cate_id', '=', $param['cate_id']]; } - $where[] = ['a.status', '>=', 0]; - $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; - $content = GoodsList::where($where) - ->field('a.*,a.id as id,w.title as cate_title,a.title as title') - ->alias('a') - ->join('GoodsCate w', 'a.cate_id = w.id') - ->order('a.create_time desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $content); + $where[] = ['a.delete_time', '=', 0]; + $param['order'] = 'a.sort asc'; + $list = $this->model->getGoodsList($where, $param); + return table_assign(0, '', $list); } else{ return view(); - } + } } - //商品添加&&编辑 + /** + * 添加 + */ public function add() { - $param = get_params(); - if (request()->isAjax()) { - if (isset($param['table-align'])) { - unset($param['table-align']); - } - if (isset($param['content'])) { - $param['md_content'] = ''; - } - if (isset($param['docContent-html-code'])) { - $param['content'] = $param['docContent-html-code']; - $param['md_content'] = $param['docContent-markdown-doc']; - unset($param['docContent-html-code']); - unset($param['docContent-markdown-doc']); - } - $DbRes=false; + if (request()->isAjax()) { + $param = get_params(); + // 检验完整性 + try { + validate(GoodsValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } if (isset($param['tag_values']) && $param['tag_values']) { $param['tag_values'] = implode(',',$param['tag_values']); } - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(GoodsCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - Db::startTrans(); - try { - GoodsList::strict(false)->field(true)->update($param); - $aid = $param['id']; - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - Db::name('GoodsKeywords')->where(['aid'=>$aid])->delete(); - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new GoodsList())->insertKeyword($keywordArray,$aid); - } - add_log('edit', $aid, $param); - Db::commit(); - $DbRes=true; - } - catch (\Exception $e) { - //回滚事务 - $DbRes = false; - Db::rollback(); - return to_assign(1,'捕获到异常'.$e->getMessage()); - } - } else { - try { - validate(GoodsCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - if(empty($param['desc'])){ - $param['desc'] = getDescriptionFromContent($param['content'], 100); - } - Db::startTrans(); - try { - $aid = GoodsList::strict(false)->field(true)->insertGetId($param); - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new GoodsList())->insertKeyword($keywordArray,$aid); - } - add_log('edit', $aid, $param); - Db::commit(); - $DbRes=true; - } - catch (\Exception $e) { - //回滚事务 - $DbRes = false; - Db::rollback(); - return to_assign(1,'捕获到异常'.$e->getMessage()); - } - } - if($DbRes){ - return to_assign(); - } - else{ - return to_assign(1,'操作失败'); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - View::assign('id', $id); - View::assign('editor', get_system_config('other','editor')); - if ($id > 0) { - $goods = (new GoodsList())->detail($id); - View::assign('goods', $goods); - return view('edit'); + if(empty($param['desc'])){ + $param['desc'] = getDescriptionFromContent($param['content'], 100); } + $param['admin_id'] = $this->uid; + $this->model->addGoods($param); + }else{ return view(); } } + - //删除商品 - public function delete() + /** + * 编辑 + */ + public function edit() { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Goods')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(GoodsValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + if (isset($param['tag_values']) && $param['tag_values']) { + $param['tag_values'] = implode(',',$param['tag_values']); + } + $this->model->editGoods($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGoodsById($id); + if (!empty($detail)) { + //轮播图 + if(!empty($detail['banner'])) { + $detail['banner_array'] = explode(',',$detail['banner']); + } + //关键字 + $keywrod_array = Db::name('GoodsKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keywrod_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keywrod_array, 'title')); + + //标签设置 + $detail['tag1'] = $detail['tag2'] = $detail['tag3'] = $detail['tag4'] = $detail['tag5'] = $detail['tag6'] =0; + if(!empty($detail['tag_values'])) { + $tag_values_array = explode(',', $detail['tag_values']); + if(in_array('1', $tag_values_array)){ + $detail['tag1'] = 1; + } + if(in_array('2', $tag_values_array)){ + $detail['tag2'] = 1; + } + if(in_array('3', $tag_values_array)){ + $detail['tag3'] = 1; + } + if(in_array('4', $tag_values_array)){ + $detail['tag4'] = 1; + } + if(in_array('5', $tag_values_array)){ + $detail['tag5'] = 1; + } + if(in_array('6', $tag_values_array)){ + $detail['tag6'] = 1; + } + } + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGoodsById($id); + if (!empty($detail)) { + //分类名 + $detail['cate_name'] = Db::name('GoodsCate')->where('id',$detail['cate_id'])->value('title'); + //轮播图 + if(!empty($detail['banner'])) { + $detail['banner_array'] = explode(',',$detail['banner']); + } + //关键字 + $keywrod_array = Db::name('GoodsKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keywrod_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keywrod_array, 'title')); + + //标签设置 + $detail['tag1'] = $detail['tag2'] = $detail['tag3'] = $detail['tag4'] = $detail['tag5'] = $detail['tag6'] =0; + if(!empty($detail['tag_values'])) { + $tag_values_array = explode(',', $detail['tag_values']); + if(in_array('1', $tag_values_array)){ + $detail['tag1'] = 1; + } + if(in_array('2', $tag_values_array)){ + $detail['tag2'] = 1; + } + if(in_array('3', $tag_values_array)){ + $detail['tag3'] = 1; + } + if(in_array('4', $tag_values_array)){ + $detail['tag4'] = 1; + } + if(in_array('5', $tag_values_array)){ + $detail['tag5'] = 1; + } + if(in_array('6', $tag_values_array)){ + $detail['tag6'] = 1; + } + } + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $this->model->delGoodsById($id,$type); + } } diff --git a/app/admin/controller/GoodsCate.php b/app/admin/controller/GoodsCate.php new file mode 100644 index 0000000..7d1c34e --- /dev/null +++ b/app/admin/controller/GoodsCate.php @@ -0,0 +1,143 @@ +model = new GoodsCateModel(); + } + /** + * 数据列表 + */ + public function datalist() + { + if (request()->isAjax()) { + $list = $this->model->where('delete_time',0)->order('sort asc')->select(); + return to_assign(0, '', $list); + } + else{ + return view(); + } + } + + //获取子分类id.$is_self=1包含自己 + public function get_cate_son($id = 0, $is_self = 1) + { + $cates = $this->model->where('delete_time',0)->order('sort asc')->select()->toArray(); + $cates_list = get_data_node($cates, $id); + $cates_array = array_column($cates_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $cates_array[] = $id; + } + return $cates_array; + } + + /** + * 添加 + */ + public function add() + { + if (request()->isAjax()) { + $param = get_params(); + + // 检验完整性 + try { + validate(GoodsCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + + $this->model->addGoodsCate($param); + }else{ + $pid = isset($param['pid']) ? $param['pid'] : 0; + View::assign('pid', $pid); + return view(); + } + } + + + /** + * 编辑 + */ + public function edit() + { + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(GoodsCateValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $cate_array = $this->get_cate_son($param['id']); + if (in_array($param['pid'], $cate_array)) { + return to_assign(1, '上级分类不能是该分类本身或其子分类'); + } + $this->model->editGoodsCate($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGoodsCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getGoodsCateById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $this->model->delGoodsCateById($id,$type); + } +} diff --git a/app/admin/controller/Pages.php b/app/admin/controller/Pages.php index 5f402a8..04d0790 100644 --- a/app/admin/controller/Pages.php +++ b/app/admin/controller/Pages.php @@ -10,162 +10,160 @@ declare (strict_types = 1); namespace app\admin\controller; use app\admin\BaseController; -use app\admin\model\Pages as PagesList; -use app\admin\model\Keywords; -use app\admin\validate\PagesCheck; +use app\admin\model\Pages as PagesModel; +use app\admin\validate\PagesValidate; use think\exception\ValidateException; use think\facade\Db; use think\facade\View; class Pages extends BaseController + { - public function index() + /** + * 构造函数 + */ + public function __construct() + { + $this->model = new PagesModel(); + $this->uid = get_login_admin('id'); + } + /** + * 数据列表 + */ + public function datalist() { if (request()->isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['id|title|keywords|desc|content', 'like', '%' . $param['keywords'] . '%']; + $param = get_params(); + $where = []; + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.title|a.desc|a.content', 'like', '%' . $param['keywords'] . '%']; } - $where[] = ['status', '>=', 0]; - $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; - $content = PagesList::where($where) - ->field('id,title,status,name,read,template,create_time') - ->order('create_time desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $content); + $where[] = ['a.delete_time', '=', 0]; + $list = $this->model->getPagesList($where, $param); + return table_assign(0, '', $list); } else{ return view(); - } + } } - //添加&&编辑 + /** + * 添加 + */ public function add() { - $param = get_params(); - if (request()->isAjax()) { - if (isset($param['table-align'])) { - unset($param['table-align']); - } - if (isset($param['content'])) { - $param['md_content'] = ''; - } - if (isset($param['docContent-html-code'])) { - $param['content'] = $param['docContent-html-code']; - $param['md_content'] = $param['docContent-markdown-doc']; - unset($param['docContent-html-code']); - unset($param['docContent-markdown-doc']); - } - $DbRes=false; - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(PagesCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - Db::startTrans(); - try { - $res = PagesList::strict(false)->field(true)->update($param); - $aid = $param['id']; - if ($res) { - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - Db::name('PagesKeywords')->where(['aid'=>$aid])->delete(); - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new PagesList())->insertKeyword($keywordArray,$aid); - } - else{ - $res_keyword == true; - } - if($res_keyword!== false){ - add_log('edit', $param['id'], $param); - Db::commit(); - $DbRes=true; - } - } else { - Db::rollback(); - } - } - catch (\Exception $e) { ##这里参数不能删除($e:错误信息) - Db::rollback(); - } - } else { - try { - validate(PagesCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - Db::startTrans(); - try { - if(empty($param['desc'])){ - $param['desc'] = getDescriptionFromContent($param['content'], 100); - } - $aid = PagesList::strict(false)->field(true)->insertGetId($param); - if ($aid) { - //关联关键字 - if (isset($param['keyword_names']) && $param['keyword_names']) { - Db::name('PagesKeywords')->where(['aid'=>$aid])->delete(); - $keywordArray = explode(',', $param['keyword_names']); - $res_keyword = (new PagesList())->insertKeyword($keywordArray,$aid); - } - else{ - $res_keyword == true; - } - if($res_keyword!== false){ - add_log('add', $aid, $param); - Db::commit(); - $DbRes=true; - } - } else { - Db::rollback(); - } - } - catch (\Exception $e) { ##这里参数不能删除($e:错误信息) - Db::rollback(); - } + if (request()->isAjax()) { + $param = get_params(); + + // 检验完整性 + try { + validate(PagesValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); } - if($DbRes){ - return to_assign(); - } - else{ - return to_assign(1,'操作失败'); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - View::assign('id', $id); - View::assign('editor', get_system_config('other','editor')); + + $this->model->addPages($param); + }else{ $templates = get_file_list(CMS_ROOT . '/app/home/view/pages/'); View::assign('templates', $templates); - if ($id > 0) { - $detail = (new PagesList())->detail($id); - if(empty($detail['md_content'])){ - View::assign('editor',1); - } - View::assign('detail', $detail); - return view('edit'); - } return view(); } } + - //删除 - public function delete() + /** + * 编辑 + */ + public function edit() { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Pages')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(PagesValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $this->model->editPages($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getPagesById($id); + if (!empty($detail)) { + //轮播图 + if(!empty($detail['banner'])) { + $detail['banner_array'] = explode(',',$detail['banner']); + } + //关键字 + $keyword_array = Db::name('PagesKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); + $detail['keyword_array'] = $keyword_array; + + $templates = get_file_list(CMS_ROOT . '/app/home/view/pages/'); + View::assign('templates', $templates); + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getPagesById($id); + if (!empty($detail)) { + //轮播图 + if(!empty($detail['banner'])) { + $detail['banner_array'] = explode(',',$detail['banner']); + } + //关键字 + $keyword_array = Db::name('PagesKeywords') + ->field('i.aid,i.keywords_id,k.title') + ->alias('i') + ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') + ->order('i.create_time asc') + ->where(array('i.aid' => $id, 'k.status' => 1)) + ->select()->toArray(); + + $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); + $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); + $detail['keyword_array'] = $keyword_array; + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + */ + public function del() + { + $param = get_params(); + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $this->model->delPagesById($id,$type); + } } diff --git a/app/admin/controller/Position.php b/app/admin/controller/Position.php new file mode 100644 index 0000000..24affa0 --- /dev/null +++ b/app/admin/controller/Position.php @@ -0,0 +1,97 @@ +isAjax()) { + $list = Db::name('Position')->where('status', '>=', 0)->order('create_time asc')->select()->toArray(); + $res['data'] = $list; + return table_assign(0, '', $res); + } else { + return view(); + } + } + + //添加&编辑 + public function add() + { + $param = get_params(); + if (request()->isAjax()) { + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(PositionCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $res = Db::name('Position')->where(['id' => $param['id']])->strict(false)->field(true)->update($param); + if($res!==false){ + add_log('edit', $param['id'], $param); + return to_assign(); + } + else{ + return to_assign(1, '提交失败'); + } + } else { + try { + validate(PositionCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + + $pid = Db::name('Position')->strict(false)->field(true)->insertGetId($param); + if($pid>0){ + add_log('add', $pid, $param); + return to_assign(); + } + else{ + return to_assign(1, '提交失败'); + } + } + } + else{ + $id = isset($param['id']) ? $param['id'] : 0; + if ($id > 0) { + $detail = Db::name('Position')->where(['id' => $id])->find(); + View::assign('detail', $detail); + } + View::assign('id', $id); + return view(); + } + } + + //删除 + public function delete() + { + $id = get_params("id"); + if ($id == 1) { + return to_assign(0, "超级岗位,不能删除"); + } + $data['status'] = '-1'; + $data['id'] = $id; + $data['update_time'] = time(); + if (Db::name('Position')->update($data) !== false) { + add_log('delete', $id); + return to_assign(0, "删除岗位成功"); + } else { + return to_assign(1, "删除失败"); + } + } +} diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 8674a56..da94568 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -11,6 +11,7 @@ namespace app\admin\controller; use app\admin\BaseController; use app\admin\model\User as UserList; +use dateset\Dateset; use think\facade\Db; use think\facade\View; @@ -161,13 +162,14 @@ class User extends BaseController $where[] = ['nickname|title', 'like', '%' . $param['keywords'] . '%']; } $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; - $content = DB::name('UserLog') + $content = Db::name('UserLog') ->field("id,uid,nickname,title,content,ip,param,create_time") ->order('create_time desc') ->where($where) ->paginate($rows, false, ['query' => $param]); $content->toArray(); + $date_set = new Dateset(); foreach ($content as $k => $v) { $data = $v; $param_array = json_decode($v['param'], true); @@ -179,7 +181,7 @@ class User extends BaseController $name = ':' . $param_array['title']; } $data['content'] = $v['content'] . $name; - $data['times'] = time_trans($v['create_time']); + $data['times'] = $date_set->time_trans($v['create_time']); $content->offsetSet($k, $data); } return table_assign(0, '', $content); diff --git a/app/admin/model/AdminLog.php b/app/admin/model/AdminLog.php index 5a960d4..10c03c1 100644 --- a/app/admin/model/AdminLog.php +++ b/app/admin/model/AdminLog.php @@ -7,7 +7,7 @@ declare (strict_types = 1); namespace app\admin\model; - +use dateset\Dateset; use think\Model; class AdminLog extends Model @@ -31,8 +31,9 @@ class AdminLog extends Model ->order('create_time desc') ->where($where) ->paginate($rows, false, ['query' => $param]); - - $content->toArray(); + + $content->toArray(); + $date_set = new Dateset(); foreach ($content as $k => $v) { $data = $v; $param_array = json_decode($v['param'], true); @@ -44,7 +45,7 @@ class AdminLog extends Model $name = ':' . $param_array['title']; } $data['content'] = $v['content'] . $name; - $data['times'] = time_trans($v['create_time']); + $data['times'] = $date_set->time_trans($v['create_time']); $content->offsetSet($k, $data); } return $content; diff --git a/app/admin/model/Article.php b/app/admin/model/Article.php index 9a8144b..d14e708 100644 --- a/app/admin/model/Article.php +++ b/app/admin/model/Article.php @@ -4,34 +4,15 @@ * @license https://opensource.org/licenses/Apache-2.0 * @link https://www.gougucms.com */ - namespace app\admin\model; - +use think\model; use app\admin\model\Keywords; -use think\Model; - +use think\facade\Db; class Article extends Model { - // 获取文章详情 - public function detail($id) - { - $detail = \think\facade\Db::name('Article')->where(['id' => $id])->find(); - if (!empty($detail)) { - $keyword_array = \think\facade\Db::name('ArticleKeywords') - ->field('i.aid,i.keywords_id,k.title') - ->alias('i') - ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') - ->order('i.create_time asc') - ->where(array('i.aid' => $id, 'k.status' => 1)) - ->select()->toArray(); - - $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); - $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); - $detail['keyword_array'] = $keyword_array; - } - return $detail; - } - + + public static $Type = ['普通','精华','热门','推荐']; + //插入关键字 public function insertKeyword($keywordArray = [], $aid = 0) { @@ -47,7 +28,113 @@ class Article extends Model 'create_time' => $time, ]; } - $res = \think\facade\Db::name('ArticleKeywords')->strict(false)->field(true)->insertAll($insert); - return $res; + $res = Db::name('ArticleKeywords')->strict(false)->field(true)->insertAll($insert); + } + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getArticleList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'a.id desc' : $param['order']; + $list = $this->where($where) + ->field('a.*,c.id as cate_id,c.title as cate_title,u.nickname as admin_name') + ->alias('a') + ->join('ArticleCate c', 'a.cate_id = c.id') + ->join('Admin u', 'a.admin_id = u.id') + ->order($order) + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $type = (int)$item->type; + $item->type_str = self::$Type[$type]; + }); + return $list; + } + + /** + * 添加数据 + * @param $param + */ + public function addArticle($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$insertId); + } + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editArticle($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + \think\facade\Db::name('ArticleKeywords')->where(['aid'=>$param['id']])->delete(); + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$param['id']); + } + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getArticleById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delArticleById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); } } + diff --git a/app/admin/model/ArticleCate.php b/app/admin/model/ArticleCate.php index df66f0e..b72b2cd 100644 --- a/app/admin/model/ArticleCate.php +++ b/app/admin/model/ArticleCate.php @@ -4,12 +4,97 @@ * @license https://opensource.org/licenses/Apache-2.0 * @link https://www.gougucms.com */ - namespace app\admin\model; - -use think\Model; - +use think\model; class ArticleCate extends Model { + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getArticleCateList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'id desc' : $param['order']; + try { + $list = $this->where($where)->order($order)->paginate($rows, false, ['query' => $param]); + return table_assign(0, '', $list); + } catch(\Exception $e) { + return ['code' => 1, 'data' => [], 'msg' => $e->getMessage()]; + } + } + /** + * 添加数据 + * @param $param + */ + public function addArticleCate($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->insertGetId($param); + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editArticleCate($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->update($param); + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getArticleCateById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @param $type + */ + public function delArticleCateById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } } + diff --git a/app/admin/model/Gallery.php b/app/admin/model/Gallery.php new file mode 100644 index 0000000..94584d7 --- /dev/null +++ b/app/admin/model/Gallery.php @@ -0,0 +1,201 @@ + $value) { + if (!$value) { + continue; + } + $keywords_id = (new Keywords())->increase($value); + $insert[] = ['aid' => $aid, + 'keywords_id' => $keywords_id, + 'create_time' => $time, + ]; + } + $res = Db::name('GalleryKeywords')->strict(false)->field(true)->insertAll($insert); + } + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getGalleryList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'a.id desc' : $param['order']; + $list = $this->where($where) + ->field('a.*,c.title as cate_title,u.nickname as admin_name') + ->alias('a') + ->join('ArticleCate c', 'a.cate_id = c.id') + ->join('Admin u', 'a.admin_id = u.id') + ->order($order) + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $type = (int)$item->type; + $item->type_str = self::$Type[$type]; + $item->count = Db::name('GalleryFile')->where(array('aid'=>$item->id))->count(); + }); + return $list; + } + + /** + * 添加数据 + * @param $param + */ + public function addGallery($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$insertId); + } + + //图集数据 + $filepathData = isset($param['img_filepath']) ? $param['img_filepath'] : ''; + $titleData = isset($param['img_title']) ? $param['img_title'] : ''; + $idData = isset($param['img_id']) ? $param['img_id'] : 0; + $nameData = isset($param['img_name']) ? $param['img_name'] : ''; + $descData = isset($param['img_desc']) ? $param['img_desc'] : ''; + $linkData = isset($param['img_link']) ? $param['img_link'] : ''; + $sortData = isset($param['img_sort']) ? $param['img_sort'] : 0; + $fileData = isset($param['img_file']) ? $param['img_file'] : 0; + //插入图集数据 + $insertData = []; + foreach ($filepathData as $key => $value) { + if (!$value) { + continue; + } + $file = []; + $file['aid'] = $insertId; + $file['title'] = $titleData[$key]; + $file['desc'] = $descData[$key]; + $file['link'] = $linkData[$key]; + $file['sort'] = $sortData[$key]; + $file['file_id'] = $fileData[$key]; + $file['filepath'] = $filepathData[$key]; + $file['name'] = $nameData[$key]; + $file['create_time'] = time(); + $insertData[] = $file; + } + Db::name('GalleryFile')->strict(false)->field(true)->insertAll($insertData); + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editGallery($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + Db::name('GalleryKeywords')->where(['aid'=>$param['id']])->delete(); + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$param['id']); + } + + //图集数据 + $filepathData = isset($param['img_filepath']) ? $param['img_filepath'] : ''; + $titleData = isset($param['img_title']) ? $param['img_title'] : ''; + $idData = isset($param['img_id']) ? $param['img_id'] : 0; + $nameData = isset($param['img_name']) ? $param['img_name'] : ''; + $descData = isset($param['img_desc']) ? $param['img_desc'] : ''; + $linkData = isset($param['img_link']) ? $param['img_link'] : 0; + $sortData = isset($param['img_sort']) ? $param['img_sort'] : 0; + $fileData = isset($param['img_file']) ? $param['img_file'] : 0; + //插入图集数据 + if ($filepathData) { + Db::name('GalleryFile')->where(['aid'=>$param['id']])->delete(); + $insertData = []; + foreach ($filepathData as $key => $value) { + if (!$value) { + continue; + } + $file = []; + $file['aid'] = $param['id']; + $file['title'] = $titleData[$key]; + $file['desc'] = $descData[$key]; + $file['link'] = $linkData[$key]; + $file['sort'] = $sortData[$key]; + $file['file_id'] = $fileData[$key]; + $file['filepath'] = $filepathData[$key]; + $file['name'] = $nameData[$key]; + $file['create_time'] = time(); + $insertData[] = $file; + } + $res = Db::name('GalleryFile')->strict(false)->field(true)->insertAll($insertData); + } + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getGalleryById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delGalleryById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } +} + diff --git a/app/admin/model/GalleryCate.php b/app/admin/model/GalleryCate.php new file mode 100644 index 0000000..0bd595c --- /dev/null +++ b/app/admin/model/GalleryCate.php @@ -0,0 +1,101 @@ +where($where)->order($order)->paginate($rows, false, ['query' => $param]); + return $list; + } catch(\Exception $e) { + return ['code' => 1, 'data' => [], 'msg' => $e->getMessage()]; + } + } + + /** + * 添加数据 + * @param $param + */ + public function addGalleryCate($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editGalleryCate($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getGalleryCateById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delGalleryCateById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } +} + diff --git a/app/admin/model/Goods.php b/app/admin/model/Goods.php index 8e6d4f1..92fcba2 100644 --- a/app/admin/model/Goods.php +++ b/app/admin/model/Goods.php @@ -4,64 +4,13 @@ * @license https://opensource.org/licenses/Apache-2.0 * @link https://www.gougucms.com */ - namespace app\admin\model; - -use app\admin\model\Keywords; -use think\Model; - +use think\model; class Goods extends Model { - // 获取商品详情 - public function detail($id) - { - $detail = \think\facade\Db::name('Goods')->where(['id'=>$id])->find(); - if(!empty($detail)) { - //轮播图 - if(!empty($detail['banner'])) { - $detail['banner_array'] = explode(',',$detail['banner']); - } - //关键字 - $keywrod_array = \think\facade\Db::name('GoodsKeywords') - ->field('i.aid,i.keywords_id,k.title') - ->alias('i') - ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') - ->order('i.create_time asc') - ->where(array('i.aid' => $id, 'k.status' => 1)) - ->select()->toArray(); - - $detail['keyword_ids'] = implode(",", array_column($keywrod_array, 'keywords_id')); - $detail['keyword_names'] = implode(',', array_column($keywrod_array, 'title')); - - //标签设置 - $detail['tag1'] = $detail['tag2'] = $detail['tag3'] = $detail['tag4'] = $detail['tag5'] = $detail['tag6'] =0; - if(!empty($detail['tag_values'])) { - $tag_values_array = explode(',', $detail['tag_values']); - if(in_array('1', $tag_values_array)){ - $detail['tag1'] = 1; - } - if(in_array('2', $tag_values_array)){ - $detail['tag2'] = 1; - } - if(in_array('3', $tag_values_array)){ - $detail['tag3'] = 1; - } - if(in_array('4', $tag_values_array)){ - $detail['tag4'] = 1; - } - if(in_array('5', $tag_values_array)){ - $detail['tag5'] = 1; - } - if(in_array('6', $tag_values_array)){ - $detail['tag6'] = 1; - } - } - } - - return $detail; - } - - //插入关键字 + public static $Type = ['普通','精华','热门','推荐']; + + //插入关键字 public function insertKeyword($keywordArray = [], $aid = 0) { $insert = []; @@ -79,4 +28,111 @@ class Goods extends Model $res = \think\facade\Db::name('GoodsKeywords')->strict(false)->field(true)->insertAll($insert); return $res; } + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getGoodsList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'a.id desc' : $param['order']; + $list = $this->where($where) + ->field('a.*,c.title as cate_title,u.nickname as admin_name') + ->alias('a') + ->join('GoodsCate c', 'a.cate_id = c.id') + ->join('Admin u', 'a.admin_id = u.id') + ->order($order) + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $type = (int)$item->type; + $item->type_str = self::$Type[$type]; + }); + return $list; + } + + /** + * 添加数据 + * @param $param + */ + public function addGoods($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$insertId); + } + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editGoods($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + \think\facade\Db::name('GoodsKeywords')->where(['aid'=>$param['id']])->delete(); + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$param['id']); + } + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getGoodsById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delGoodsById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } } + diff --git a/app/admin/model/GoodsCate.php b/app/admin/model/GoodsCate.php index c6dba29..7501261 100644 --- a/app/admin/model/GoodsCate.php +++ b/app/admin/model/GoodsCate.php @@ -4,12 +4,98 @@ * @license https://opensource.org/licenses/Apache-2.0 * @link https://www.gougucms.com */ - namespace app\admin\model; - -use think\Model; - +use think\model; class GoodsCate extends Model { + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getGoodsCateList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'id desc' : $param['order']; + try { + $list = $this->where($where)->order($order)->paginate($rows, false, ['query' => $param]); + return $list; + } catch(\Exception $e) { + return ['code' => 1, 'data' => [], 'msg' => $e->getMessage()]; + } + } + /** + * 添加数据 + * @param $param + */ + public function addGoodsCate($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editGoodsCate($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getGoodsCateById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delGoodsCateById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } } + diff --git a/app/admin/model/Pages.php b/app/admin/model/Pages.php index 2d38037..c5fc804 100644 --- a/app/admin/model/Pages.php +++ b/app/admin/model/Pages.php @@ -4,41 +4,11 @@ * @license https://opensource.org/licenses/Apache-2.0 * @link https://www.gougucms.com */ - namespace app\admin\model; - -use app\admin\model\Keywords; -use think\Model; - +use think\model; class Pages extends Model { - // 获取详情 - public function detail($id) - { - $detail = \think\facade\Db::name('Pages')->where(['id'=>$id])->find(); - if(empty($detail)) { - return false; - } - //轮播图 - if(!empty($detail['banner'])) { - $detail['banner_array'] = explode(',',$detail['banner']); - } - //关键字 - $keyword_array = \think\facade\Db::name('PagesKeywords') - ->field('i.aid,i.keywords_id,k.title') - ->alias('i') - ->join('keywords k', 'k.id = i.keywords_id', 'LEFT') - ->order('i.create_time asc') - ->where(array('i.aid' => $id, 'k.status' => 1)) - ->select()->toArray(); - - $detail['keyword_ids'] = implode(",", array_column($keyword_array, 'keywords_id')); - $detail['keyword_names'] = implode(',', array_column($keyword_array, 'title')); - $detail['keyword_array'] = $keyword_array; - return $detail; - } - - //插入关键字 + //插入关键字 public function insertKeyword($keywordArray = [], $aid = 0) { $insert = []; @@ -56,4 +26,106 @@ class Pages extends Model $res = \think\facade\Db::name('PagesKeywords')->strict(false)->field(true)->insertAll($insert); return $res; } + /** + * 获取分页列表 + * @param $where + * @param $param + */ + public function getPagesList($where, $param) + { + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $order = empty($param['order']) ? 'id desc' : $param['order']; + $list = $this->where($where) + ->field('a.*,u.nickname as admin_name') + ->alias('a') + ->join('Admin u', 'a.admin_id = u.id') + ->order($order) + ->paginate($rows, false, ['query' => $param]); + return $list; + } + + /** + * 添加数据 + * @param $param + */ + public function addPages($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = $this->strict(false)->field(true)->insertGetId($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$insertId); + } + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editPages($param) + { + try { + $param['update_time'] = time(); + $this->where('id', $param['id'])->strict(false)->field(true)->update($param); + //关联关键字 + if (isset($param['keyword_names']) && $param['keyword_names']) { + \think\facade\Db::name('PagesKeywords')->where(['aid'=>$param['id']])->delete(); + $keywordArray = explode(',', $param['keyword_names']); + $res_keyword = $this->insertKeyword($keywordArray,$param['id']); + } + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getPagesById($id) + { + $info = $this->where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delPagesById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + $this->where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + $this->where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } } + diff --git a/app/admin/validate/ArticleCateValidate.php b/app/admin/validate/ArticleCateValidate.php new file mode 100644 index 0000000..a617ce4 --- /dev/null +++ b/app/admin/validate/ArticleCateValidate.php @@ -0,0 +1,29 @@ +where([['title','=',$data['title']],['id','<>',$data['id']],['delete_time','=',0]])->count(); + return $count == 0 ? true : false; + } + + protected $rule = [ + 'title' => 'require|checkOne', + ]; + + protected $message = [ + 'title.require' => '分类名称不能为空', + 'title.checkOne' => '同样的分类名称已经存在', + ]; +} \ No newline at end of file diff --git a/app/admin/validate/ArticleCheck.php b/app/admin/validate/ArticleCheck.php deleted file mode 100644 index 65d879d..0000000 --- a/app/admin/validate/ArticleCheck.php +++ /dev/null @@ -1,35 +0,0 @@ - 'require|unique:article', - 'content' => 'require', - 'id' => 'require', - 'article_cate_id' => 'require', - 'status' => 'require', - ]; - - protected $message = [ - 'title.require' => '标题不能为空', - 'title.unique' => '同样的文章标题已经存在', - 'content.require' => '文章内容不能为空', - 'article_cate_id.require' => '所属分类为必选', - 'id.require' => '缺少更新条件', - 'status.require' => '状态为必选', - ]; - - protected $scene = [ - 'add' => ['title', 'article_cate_id', 'content', 'status'], - 'edit' => ['title', 'article_cate_id', 'content', 'id', 'status'], - ]; -} diff --git a/app/admin/validate/ArticleValidate.php b/app/admin/validate/ArticleValidate.php new file mode 100644 index 0000000..1a3141d --- /dev/null +++ b/app/admin/validate/ArticleValidate.php @@ -0,0 +1,26 @@ + 'require', + 'title' => 'require', + 'thumb' => 'require', + 'content' => 'require', +]; + + protected $message = [ + 'cate_id.require' => '所属分类不能为空', + 'title.require' => '文章标题不能为空', + 'thumb.require' => '缩略图不能为空', + 'content.require' => '文章内容不能为空', +]; +} \ No newline at end of file diff --git a/app/admin/validate/ArticleCateCheck.php b/app/admin/validate/DepartmentCheck.php similarity index 60% rename from app/admin/validate/ArticleCateCheck.php rename to app/admin/validate/DepartmentCheck.php index 52f7256..0fe546a 100644 --- a/app/admin/validate/ArticleCateCheck.php +++ b/app/admin/validate/DepartmentCheck.php @@ -1,7 +1,7 @@ 'require|unique:article_cate', + 'title' => 'require|unique:department', 'id' => 'require', ]; protected $message = [ - 'title.require' => '名称不能为空', - 'title.unique' => '同样的名称已经存在', + 'title.require' => '部门名称不能为空', + 'title.unique' => '同样的部门名称已经存在', 'id.require' => '缺少更新条件', ]; @@ -26,4 +26,4 @@ class ArticleCateCheck extends Validate 'add' => ['title'], 'edit' => ['id', 'title'], ]; -} +} \ No newline at end of file diff --git a/app/admin/validate/GalleryCateValidate.php b/app/admin/validate/GalleryCateValidate.php new file mode 100644 index 0000000..12722b2 --- /dev/null +++ b/app/admin/validate/GalleryCateValidate.php @@ -0,0 +1,29 @@ +where([['title','=',$data['title']],['id','<>',$data['id']],['delete_time','=',0]])->count(); + return $count == 0 ? true : false; + } + + protected $rule = [ + 'title' => 'require|checkOne', + ]; + + protected $message = [ + 'title.require' => '分类名称不能为空', + 'title.checkOne' => '同样的分类名称已经存在', + ]; +} \ No newline at end of file diff --git a/app/admin/validate/GalleryValidate.php b/app/admin/validate/GalleryValidate.php new file mode 100644 index 0000000..aeae19a --- /dev/null +++ b/app/admin/validate/GalleryValidate.php @@ -0,0 +1,24 @@ + 'require', + 'title' => 'require', + 'thumb' => 'require', +]; + + protected $message = [ + 'cate_id.require' => '所属分类不能为空', + 'title.require' => '图集名称不能为空', + 'thumb.require' => '缩略图不能为空', +]; +} \ No newline at end of file diff --git a/app/admin/validate/GoodsCateCheck.php b/app/admin/validate/GoodsCateCheck.php deleted file mode 100644 index ba23d46..0000000 --- a/app/admin/validate/GoodsCateCheck.php +++ /dev/null @@ -1,29 +0,0 @@ - 'require|unique:goods_cate', - 'id' => 'require', - ]; - - protected $message = [ - 'title.require' => '名称不能为空', - 'title.unique' => '同样的名称已经存在', - 'id.require' => '缺少更新条件', - ]; - - protected $scene = [ - 'add' => ['title'], - 'edit' => ['id', 'title'], - ]; -} diff --git a/app/admin/validate/GoodsCateValidate.php b/app/admin/validate/GoodsCateValidate.php new file mode 100644 index 0000000..3e49d05 --- /dev/null +++ b/app/admin/validate/GoodsCateValidate.php @@ -0,0 +1,20 @@ + 'require', +]; + + protected $message = [ + 'title.require' => '分类名称不能为空', +]; +} \ No newline at end of file diff --git a/app/admin/validate/GoodsCheck.php b/app/admin/validate/GoodsCheck.php deleted file mode 100644 index 678802f..0000000 --- a/app/admin/validate/GoodsCheck.php +++ /dev/null @@ -1,35 +0,0 @@ - 'require|unique:goods', - 'content' => 'require', - 'id' => 'require', - 'cate_id' => 'require', - 'status' => 'require', - ]; - - protected $message = [ - 'title.require' => '商品标题不能为空', - 'title.unique' => '同样的商品标题已经存在', - 'cate_id.require' => '所属商品分类为必选', - 'content.require' => '商品内容不能为空', - 'id.require' => '缺少更新条件', - 'status.require' => '状态为必选', - ]; - - protected $scene = [ - 'add' => ['title', 'cate_id', 'content', 'status'], - 'edit' => ['title', 'cate_id', 'content', 'id', 'status'], - ]; -} diff --git a/app/admin/validate/GoodsValidate.php b/app/admin/validate/GoodsValidate.php new file mode 100644 index 0000000..f7be889 --- /dev/null +++ b/app/admin/validate/GoodsValidate.php @@ -0,0 +1,32 @@ + 'require', + 'title' => 'require', + 'thumb' => 'require', + 'content' => 'require', + 'base_price' => 'require', + 'price' => 'require', + 'stocks' => 'require', +]; + + protected $message = [ + 'cate_id.require' => '所属分类不能为空', + 'title.require' => '商品名称不能为空', + 'thumb.require' => '缩略图不能为空', + 'content.require' => '商品描述不能为空', + 'base_price.require' => '市场价格不能为空', + 'price.require' => '实际价格不能为空', + 'stocks.require' => '商品库存不能为空', +]; +} \ No newline at end of file diff --git a/app/admin/validate/PagesCheck.php b/app/admin/validate/PagesCheck.php deleted file mode 100644 index 2be325d..0000000 --- a/app/admin/validate/PagesCheck.php +++ /dev/null @@ -1,37 +0,0 @@ - 'require|unique:pages', - 'content' => 'require', - 'name' => 'lower|min:3|unique:pages', - 'id' => 'require', - 'status' => 'require', - ]; - - protected $message = [ - 'title.require' => '标题不能为空', - 'title.unique' => '同样的页面标题已经存在', - 'content.require' => '页面内容不能为空', - 'name.lower' => 'URL文件名称只能是小写字符', - 'name.min' => 'URL文件名称至少需要3个小写字符', - 'name.unique' => '同样的URL文件名称已经存在', - 'id.require' => '缺少更新条件', - 'status.require' => '状态为必选', - ]; - - protected $scene = [ - 'add' => ['title', 'content', 'name', 'status'], - 'edit' => ['title', 'content', 'id', 'name', 'status'], - ]; -} diff --git a/app/admin/validate/PagesValidate.php b/app/admin/validate/PagesValidate.php new file mode 100644 index 0000000..ccb1fd6 --- /dev/null +++ b/app/admin/validate/PagesValidate.php @@ -0,0 +1,26 @@ + 'require', + 'content' => 'require', + 'name' => 'lower|min:3|unique:pages', + ]; + + protected $message = [ + 'title.require' => '页面名称不能为空', + 'content.require' => '页面内容不能为空', + 'name.lower' => 'URL文件名称只能是小写字符', + 'name.min' => 'URL文件名称至少需要3个小写字符', + 'name.unique' => '同样的URL文件名称已经存在', + ]; +} \ No newline at end of file diff --git a/app/admin/validate/PositionCheck.php b/app/admin/validate/PositionCheck.php new file mode 100644 index 0000000..d54e5af --- /dev/null +++ b/app/admin/validate/PositionCheck.php @@ -0,0 +1,32 @@ + 'require|unique:position', + 'work_price' => 'require|number', + 'id' => 'require' + ]; + + protected $message = [ + 'title.require' => '岗位名称不能为空', + 'title.unique' => '同样的岗位名称已经存在', + 'work_price.require' => '岗位工时单价不能为空', + 'work_price.number' => '岗位工时单价只能是整数', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['title', 'work_price', 'group_id'], + 'edit' => ['title', 'work_price', 'group_id', 'id'], + ]; +} diff --git a/app/admin/view/admin/add.html b/app/admin/view/admin/add.html index 68bf694..fd28b0f 100644 --- a/app/admin/view/admin/add.html +++ b/app/admin/view/admin/add.html @@ -17,9 +17,9 @@
勾股CMS是一套基于ThinkPHP6 + Layui + MySql打造的轻量级、高性能极速后台开发框架。通用型的后台权限管理框架,极低门槛、操作简单、开箱即用。系统易于功能扩展,代码维护,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本。
\n勾股BLOG是一款实用的开源免费的个人博客系统。集成了系统管理、基础数据、博客文章、博客动态、语雀知识库、用户管理、访问统计等功能。具有简约,易用,内存占用低等特点,可以用来做个人博客,工作室官网,自媒体官网等网站,二次开发之后也可以作为资讯、展品展示等网站。
\n勾股OA是一款实用的开源免费的企业办公系统框架。它集成了系统设置、人事管理、消息管理、审批管理、日常办公、财务管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。
\n勾股DEV是一款专为IT行业研发团队打造的智能化项目管理与团队协作的工具软件,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。
\n勾股CMS是一套基于ThinkPHP6 + Layui + MySql打造的轻量级、高性能极速后台开发框架。通用型的后台权限管理框架,极低门槛、操作简单、开箱即用。系统易于功能扩展,代码维护,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本。
\n勾股BLOG是一款实用的开源免费的个人博客系统。集成了系统管理、基础数据、博客文章、博客动态、语雀知识库、用户管理、访问统计等功能。具有简约,易用,内存占用低等特点,可以用来做个人博客,工作室官网,自媒体官网等网站,二次开发之后也可以作为资讯、展品展示等网站。
\n勾股OA是一款实用的开源免费的企业办公系统框架。它集成了系统设置、人事管理、消息管理、审批管理、日常办公、财务管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。
\n勾股DEV是一款专为IT行业研发团队打造的智能化项目管理与团队协作的工具软件,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。
\n勾股CMS是一套基于ThinkPHP6 + Layui + MySql打造的轻量级、高性能极速后台开发框架。通用型的后台权限管理框架,操作简单、开箱即用。系统易于功能扩展,代码维护,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本。
\n勾股OA是一款实用的企业办公系统框架。集成了系统设置、人事管理、消息管理、审批管理、日常办公、财务管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。
', '', 9, 0, 'gouguoa', 'oa', 0, 1654419120, 0); -INSERT INTO `cms_pages` VALUES (3, 1, '勾股DEV项目管理系统', 0, '', '勾股DEV是一款专为IT研发团队打造的项目管理与团队协作的系统工具,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。', '勾股DEV是一款专为IT研发团队打造的项目管理与团队协作的系统工具,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。
\n勾股DEV的产品理念:通过“项目(Project)”的形式把成员、需求、任务、缺陷(BUG)、文档、互动讨论以及各种形式的资源组织在一起,团队成员参与更新任务、文档等内容来推动项目的进度,同时系统利用时间线索和各种动态的报表的形式来自动给成员汇报项目进度。
', '', 8, 0, 'gougudev', 'dev', 0, 1654167139, 0); +INSERT INTO `cms_pages` VALUES (1, '关于我们', 1, '', '勾股CMS是一套基于ThinkPHP6+Layui+MySql打造的轻量级、高性能快速建站的内容管理系统。后台管理模块,一目了然,操作简单,通用型后台权限管理框架,开箱即用。', '勾股CMS是一套基于ThinkPHP6 + Layui + MySql打造的轻量级、高性能极速后台开发框架。通用型的后台权限管理框架,操作简单、开箱即用。系统易于功能扩展,代码维护,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本。
\n勾股OA是一款实用的企业办公系统框架。集成了系统设置、人事管理、消息管理、审批管理、日常办公、财务管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。
', 1,9, 0, 'gouguoa', 'oa', 1, 1654419120, 0,0); +INSERT INTO `cms_pages` VALUES (3, '勾股DEV项目管理系统', 0, '', '勾股DEV是一款专为IT研发团队打造的项目管理与团队协作的系统工具,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。', '勾股DEV是一款专为IT研发团队打造的项目管理与团队协作的系统工具,可以在线管理团队的工作、项目和任务,覆盖从需求提出到研发完成上线整个过程的项目协作。
\n勾股DEV的产品理念:通过“项目(Project)”的形式把成员、需求、任务、缺陷(BUG)、文档、互动讨论以及各种形式的资源组织在一起,团队成员参与更新任务、文档等内容来推动项目的进度,同时系统利用时间线索和各种动态的报表的形式来自动给成员汇报项目进度。
', 1,8, 0, 'gougudev', 'dev', 1, 1654167139, 0,0); -- ---------------------------- -- Table structure for `cms_pages_keywords` diff --git a/composer.json b/composer.json index 18375e0..34f1d0d 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,8 @@ "topthink/think-view": "^1.0", "topthink/think-captcha": "^3.0", "phpmailer/phpmailer": "^6.6", - "firebase/php-jwt": "6.1.2" + "firebase/php-jwt": "6.1.2", + "symfony/var-exporter": "5.4.10" }, "require-dev": { "symfony/var-dumper": "^4.2", diff --git a/config/console.php b/config/console.php index a818a98..2b6102f 100644 --- a/config/console.php +++ b/config/console.php @@ -5,5 +5,13 @@ return [ // 指令定义 'commands' => [ + 'crud' => 'app\crud\Command\Crud', + 'crud-c' => 'app\crud\Command\CrudController', + 'crud-m' => 'app\crud\Command\CrudModel', + 'crud-v' => 'app\crud\Command\CrudValidate', + 'crud-l' => 'app\crud\Command\CrudList', + 'crud-a' => 'app\crud\Command\CrudAdd', + 'crud-e' => 'app\crud\Command\CrudEdit', + 'crud-r' => 'app\crud\Command\CrudRead', ], ]; diff --git a/extend/dateset/Dateset.php b/extend/dateset/Dateset.php new file mode 100644 index 0000000..8f0c13d --- /dev/null +++ b/extend/dateset/Dateset.php @@ -0,0 +1,164 @@ + $yes_start_time && $time < $yes_end_time) { + return '昨天'; + } + + if ($time > $yes_start_time && $time < $two_end_time) { + return '1天前'; + } + + if ($time > $yes_start_time && $time < $three_end_time) { + return '2天前'; + } + + if ($time > $yes_start_time && $time < $four_end_time) { + return '3天前'; + } + + if ($time > $yes_start_time && $time < $five_end_time) { + return '4天前'; + } + + if ($time > $yes_start_time && $time < $six_end_time) { + return '5天前'; + } + + if ($time > $yes_start_time && $time < $seven_end_time) { + return '6天前'; + } + + switch ($format) { + case 'd': + $show_time = date('Y-m-d', $time); + break; + case 'i': + $show_time = date('Y-m-d H:i', $time); + break; + case 's': + $show_time = date('Y-m-d H:i:s', $time); + break; + } + return $show_time; + } + + + /** + * 计算两个时间戳之间相差的时间 + * + * $differ = self::differ(60, 182, 'minutes,seconds'); // array('minutes' => 2, 'seconds' => 2) + * $differ = self::differ(60, 182, 'minutes'); // 2 + * + * @param int $remote timestamp to find the span of + * @param int $local timestamp to use as the baseline + * @param string $output formatting string + * @return string when only a single output is requested + * @return array associative list of all outputs requested + * @from https://github.com/kohana/ohanzee-helpers/blob/master/src/Date.php + */ + public static function differ($remote, $local = null, $output = 'years,months,weeks,days,hours,minutes,seconds') + { + // Normalize output + $output = trim(strtolower((string)$output)); + if (!$output) { + // Invalid output + return false; + } + // Array with the output formats + $output = preg_split('/[^a-z]+/', $output); + // Convert the list of outputs to an associative array + $output = array_combine($output, array_fill(0, count($output), 0)); + // Make the output values into keys + extract(array_flip($output), EXTR_SKIP); + if ($local === null) { + // Calculate the span from the current time + $local = time(); + } + // Calculate timespan (seconds) + $timespan = abs($remote - $local); + if (isset($output['years'])) { + $timespan -= self::YEAR * ($output['years'] = (int)floor($timespan / self::YEAR)); + } + if (isset($output['months'])) { + $timespan -= self::MONTH * ($output['months'] = (int)floor($timespan / self::MONTH)); + } + if (isset($output['weeks'])) { + $timespan -= self::WEEK * ($output['weeks'] = (int)floor($timespan / self::WEEK)); + } + if (isset($output['days'])) { + $timespan -= self::DAY * ($output['days'] = (int)floor($timespan / self::DAY)); + } + if (isset($output['hours'])) { + $timespan -= self::HOUR * ($output['hours'] = (int)floor($timespan / self::HOUR)); + } + if (isset($output['minutes'])) { + $timespan -= self::MINUTE * ($output['minutes'] = (int)floor($timespan / self::MINUTE)); + } + // Seconds ago, 1 + if (isset($output['seconds'])) { + $output['seconds'] = $timespan; + } + if (count($output) === 1) { + // Only a single output was requested, return it + return array_pop($output); + } + // Return array + return $output; + } + + /** + * 获取指定年月拥有的天数 + * @param int $month + * @param int $year + * @return false|int|string + */ + public static function days_in_month($month, $year) + { + if (function_exists("cal_days_in_month")) { + return cal_days_in_month(CAL_GREGORIAN, $month, $year); + } else { + return date('t', mktime(0, 0, 0, $month, 1, $year)); + } + } +} diff --git a/public/index.php b/public/index.php index e571886..7eecb3a 100644 --- a/public/index.php +++ b/public/index.php @@ -15,10 +15,10 @@ if (empty(file_exists(__DIR__ . '/../vendor/autoload.php'))) { require __DIR__ . '/../vendor/autoload.php'; // 定义当前版本号 -define('CMS_VERSION','3.7.25'); +define('CMS_VERSION','4.0.825'); // 定义Layui版本号 -define('LAYUI_VERSION','2.7.5'); +define('LAYUI_VERSION','2.7.6'); // 定义项目目录 define('CMS_ROOT', __DIR__ . '/../'); diff --git a/public/static/assets/gougu/module/tool.js b/public/static/assets/gougu/module/tool.js index 4eba8b1..51d1b01 100644 --- a/public/static/assets/gougu/module/tool.js +++ b/public/static/assets/gougu/module/tool.js @@ -30,8 +30,6 @@ layui.define([], function (exports) { let op_width = obj.outerWidth(); obj.animate({ left: '+=' + op_width + 'px' }, 200, 'linear', function () { $('body').removeClass('right-open'); - //$('.layui-anim-rl').remove(); - //$('.layui-layer-shade').remove(); layer.close(index); if (layui.pageTable) { layui.pageTable.resize(); @@ -52,8 +50,9 @@ layui.define([], function (exports) { return false; } that.loading = true; - if (width == 0) { - width = window.innerWidth > 1280 ? '1200px' : '996px'; + var sideWidth = window.innerWidth > 1280 ? '1200px' : '996px'; + if (width && width > 0) { + sideWidth = width + 'px'; } $.ajax({ url: url, @@ -64,26 +63,35 @@ layui.define([], function (exports) { layer.msg(res.msg); return false; } - var express = '