From 0729a892e20de13e367fa4b6d1bd6a3895f03902 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 31 Jan 2023 14:48:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=99=A8=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/Api.php | 19 - app/admin/controller/Article.php | 190 -------- app/admin/controller/ArticleCate.php | 149 ------ app/admin/controller/Gallery.php | 171 ------- app/admin/controller/GalleryCate.php | 150 ------ app/admin/controller/Goods.php | 223 --------- app/admin/controller/GoodsCate.php | 143 ------ app/admin/controller/Keywords.php | 100 ---- app/admin/controller/Links.php | 99 ---- app/admin/controller/Nav.php | 181 -------- app/admin/controller/Pages.php | 169 ------- app/admin/controller/Sitemap.php | 201 -------- app/admin/controller/Slide.php | 211 --------- app/admin/controller/User.php | 193 -------- app/admin/model/Article.php | 140 ------ app/admin/model/ArticleCate.php | 100 ---- app/admin/model/Gallery.php | 203 --------- app/admin/model/GalleryCate.php | 101 ----- app/admin/model/Goods.php | 138 ------ app/admin/model/GoodsCate.php | 101 ----- app/admin/model/Keywords.php | 26 -- app/admin/model/Links.php | 17 - app/admin/model/Nav.php | 15 - app/admin/model/NavInfo.php | 15 - app/admin/model/Pages.php | 131 ------ app/admin/model/Sitemap.php | 34 -- app/admin/model/SitemapCate.php | 23 - app/admin/model/Slide.php | 15 - app/admin/model/SlideInfo.php | 15 - app/admin/model/User.php | 15 - app/admin/validate/ArticleCateValidate.php | 29 -- app/admin/validate/ArticleValidate.php | 26 -- app/admin/validate/GalleryCateValidate.php | 29 -- app/admin/validate/GalleryValidate.php | 24 - app/admin/validate/GoodsCateValidate.php | 20 - app/admin/validate/GoodsValidate.php | 32 -- app/admin/validate/KeywordsCheck.php | 31 -- app/admin/validate/NavCheck.php | 39 -- app/admin/validate/PagesValidate.php | 26 -- app/admin/validate/SitemapCateCheck.php | 29 -- app/admin/validate/SitemapCheck.php | 40 -- app/admin/validate/SlideCheck.php | 40 -- app/admin/validate/UserCheck.php | 26 -- app/admin/validate/linksCheck.php | 35 -- app/admin/view/article/add.html | 210 --------- app/admin/view/article/datalist.html | 173 ------- app/admin/view/article/edit.html | 222 --------- app/admin/view/article/read.html | 78 ---- app/admin/view/article_cate/add.html | 70 --- app/admin/view/article_cate/datalist.html | 77 ---- app/admin/view/article_cate/edit.html | 70 --- app/admin/view/gallery/add.html | 405 ----------------- app/admin/view/gallery/datalist.html | 151 ------ app/admin/view/gallery/edit.html | 454 ------------------- app/admin/view/gallery/read.html | 138 ------ app/admin/view/gallery_cate/add.html | 71 --- app/admin/view/gallery_cate/datalist.html | 104 ----- app/admin/view/gallery_cate/edit.html | 71 --- app/admin/view/goods/add.html | 285 ------------ app/admin/view/goods/datalist.html | 192 -------- app/admin/view/goods/edit.html | 305 ------------- app/admin/view/goods/read.html | 122 ----- app/admin/view/goods_cate/add.html | 72 --- app/admin/view/goods_cate/datalist.html | 84 ---- app/admin/view/goods_cate/edit.html | 72 --- app/admin/view/index/main.html | 2 +- app/admin/view/keywords/add.html | 63 --- app/admin/view/keywords/index.html | 122 ----- app/admin/view/links/add.html | 97 ---- app/admin/view/links/index.html | 118 ----- app/admin/view/nav/add.html | 63 --- app/admin/view/nav/index.html | 118 ----- app/admin/view/nav/nav_info.html | 132 ------ app/admin/view/nav/nav_info_add.html | 99 ---- app/admin/view/pages/add.html | 210 --------- app/admin/view/pages/datalist.html | 151 ------ app/admin/view/pages/edit.html | 215 --------- app/admin/view/pages/read.html | 39 -- app/admin/view/sitemap/add.html | 47 -- app/admin/view/sitemap/index.html | 112 ----- app/admin/view/sitemap/sitemap_info.html | 108 ----- app/admin/view/sitemap/sitemap_info_add.html | 112 ----- app/admin/view/slide/add.html | 64 --- app/admin/view/slide/index.html | 123 ----- app/admin/view/slide/slide_info.html | 121 ----- app/admin/view/slide/slide_info_add.html | 106 ----- app/admin/view/user/edit.html | 98 ---- app/admin/view/user/index.html | 203 --------- app/admin/view/user/log.html | 97 ---- app/admin/view/user/record.html | 88 ---- app/admin/view/user/view.html | 113 ----- 91 files changed, 1 insertion(+), 9960 deletions(-) delete mode 100644 app/admin/controller/Article.php delete mode 100644 app/admin/controller/ArticleCate.php delete mode 100644 app/admin/controller/Gallery.php delete mode 100644 app/admin/controller/GalleryCate.php delete mode 100644 app/admin/controller/Goods.php delete mode 100644 app/admin/controller/GoodsCate.php delete mode 100644 app/admin/controller/Keywords.php delete mode 100644 app/admin/controller/Links.php delete mode 100644 app/admin/controller/Nav.php delete mode 100644 app/admin/controller/Pages.php delete mode 100644 app/admin/controller/Sitemap.php delete mode 100644 app/admin/controller/Slide.php delete mode 100644 app/admin/controller/User.php delete mode 100644 app/admin/model/Article.php delete mode 100644 app/admin/model/ArticleCate.php delete mode 100644 app/admin/model/Gallery.php delete mode 100644 app/admin/model/GalleryCate.php delete mode 100644 app/admin/model/Goods.php delete mode 100644 app/admin/model/GoodsCate.php delete mode 100644 app/admin/model/Keywords.php delete mode 100644 app/admin/model/Links.php delete mode 100644 app/admin/model/Nav.php delete mode 100644 app/admin/model/NavInfo.php delete mode 100644 app/admin/model/Pages.php delete mode 100644 app/admin/model/Sitemap.php delete mode 100644 app/admin/model/SitemapCate.php delete mode 100644 app/admin/model/Slide.php delete mode 100644 app/admin/model/SlideInfo.php delete mode 100644 app/admin/model/User.php delete mode 100644 app/admin/validate/ArticleCateValidate.php delete mode 100644 app/admin/validate/ArticleValidate.php delete mode 100644 app/admin/validate/GalleryCateValidate.php delete mode 100644 app/admin/validate/GalleryValidate.php delete mode 100644 app/admin/validate/GoodsCateValidate.php delete mode 100644 app/admin/validate/GoodsValidate.php delete mode 100644 app/admin/validate/KeywordsCheck.php delete mode 100644 app/admin/validate/NavCheck.php delete mode 100644 app/admin/validate/PagesValidate.php delete mode 100644 app/admin/validate/SitemapCateCheck.php delete mode 100644 app/admin/validate/SitemapCheck.php delete mode 100644 app/admin/validate/SlideCheck.php delete mode 100644 app/admin/validate/UserCheck.php delete mode 100644 app/admin/validate/linksCheck.php delete mode 100644 app/admin/view/article/add.html delete mode 100644 app/admin/view/article/datalist.html delete mode 100644 app/admin/view/article/edit.html delete mode 100644 app/admin/view/article/read.html delete mode 100644 app/admin/view/article_cate/add.html delete mode 100644 app/admin/view/article_cate/datalist.html delete mode 100644 app/admin/view/article_cate/edit.html delete mode 100644 app/admin/view/gallery/add.html delete mode 100644 app/admin/view/gallery/datalist.html delete mode 100644 app/admin/view/gallery/edit.html delete mode 100644 app/admin/view/gallery/read.html delete mode 100644 app/admin/view/gallery_cate/add.html delete mode 100644 app/admin/view/gallery_cate/datalist.html delete mode 100644 app/admin/view/gallery_cate/edit.html delete mode 100644 app/admin/view/goods/add.html delete mode 100644 app/admin/view/goods/datalist.html delete mode 100644 app/admin/view/goods/edit.html delete mode 100644 app/admin/view/goods/read.html delete mode 100644 app/admin/view/goods_cate/add.html delete mode 100644 app/admin/view/goods_cate/datalist.html delete mode 100644 app/admin/view/goods_cate/edit.html delete mode 100644 app/admin/view/keywords/add.html delete mode 100644 app/admin/view/keywords/index.html delete mode 100644 app/admin/view/links/add.html delete mode 100644 app/admin/view/links/index.html delete mode 100644 app/admin/view/nav/add.html delete mode 100644 app/admin/view/nav/index.html delete mode 100644 app/admin/view/nav/nav_info.html delete mode 100644 app/admin/view/nav/nav_info_add.html delete mode 100644 app/admin/view/pages/add.html delete mode 100644 app/admin/view/pages/datalist.html delete mode 100644 app/admin/view/pages/edit.html delete mode 100644 app/admin/view/pages/read.html delete mode 100644 app/admin/view/sitemap/add.html delete mode 100644 app/admin/view/sitemap/index.html delete mode 100644 app/admin/view/sitemap/sitemap_info.html delete mode 100644 app/admin/view/sitemap/sitemap_info_add.html delete mode 100644 app/admin/view/slide/add.html delete mode 100644 app/admin/view/slide/index.html delete mode 100644 app/admin/view/slide/slide_info.html delete mode 100644 app/admin/view/slide/slide_info_add.html delete mode 100644 app/admin/view/user/edit.html delete mode 100644 app/admin/view/user/index.html delete mode 100644 app/admin/view/user/log.html delete mode 100644 app/admin/view/user/record.html delete mode 100644 app/admin/view/user/view.html diff --git a/app/admin/controller/Api.php b/app/admin/controller/Api.php index d06feb8..2c844de 100644 --- a/app/admin/controller/Api.php +++ b/app/admin/controller/Api.php @@ -336,25 +336,6 @@ class Api extends BaseController $content = $log->get_log_list($param); return table_assign(0, '', $content); } - - //获取访问记录 - public function get_view_data() - { - $param = get_params(); - $first_time = time(); - $second_time = $first_time - 86400; - $three_time = $first_time - 86400*365; - $begin_first = strtotime(date('Y-m-d', $first_time) . " 00:00:00"); - $end_first = strtotime(date('Y-m-d', $first_time) . " 23:59:59"); - $begin_second = strtotime(date('Y-m-d', $second_time) . " 00:00:00"); - $end_second = strtotime(date('Y-m-d', $second_time) . " 23:59:59"); - $begin_three = strtotime(date('Y-m-d', $three_time) . " 00:00:00"); - $data_first = Db::name('UserLog')->field('create_time')->whereBetween('create_time', "$begin_first,$end_first")->select(); - $data_second = Db::name('UserLog')->field('create_time')->whereBetween('create_time', "$begin_second,$end_second")->select(); - $data_three = Db::name('UserLog')->field('create_time')->whereBetween('create_time', "$begin_three,$end_first")->select(); - - return to_assign(0, '', ['data_first' => hour_document($data_first), 'data_second' => hour_document($data_second), 'data_three'=>date_document($data_three)]); - } } diff --git a/app/admin/controller/Article.php b/app/admin/controller/Article.php deleted file mode 100644 index 82373ad..0000000 --- a/app/admin/controller/Article.php +++ /dev/null @@ -1,190 +0,0 @@ -model = new ArticleModel(); - $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.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(); - } - } - - /** - * 添加 - */ - public function add() - { - if (request()->isAjax()) { - $param = get_params(); - 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']); - } - $param['admin_id'] = $this->uid; - // 检验完整性 - try { - validate(ArticleValidate::class)->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - - $ArticleModel = new ArticleModel(); - $ArticleModel->addArticle($param); - }else{ - View::assign('editor', get_system_config('other','editor')); - return view(); - } - } - - - /** - * 编辑 - */ - public function edit() - { - $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 deleted file mode 100644 index 00c54bc..0000000 --- a/app/admin/controller/ArticleCate.php +++ /dev/null @@ -1,149 +0,0 @@ -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/Gallery.php b/app/admin/controller/Gallery.php deleted file mode 100644 index e708acd..0000000 --- a/app/admin/controller/Gallery.php +++ /dev/null @@ -1,171 +0,0 @@ -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.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'] = $this->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 deleted file mode 100644 index 3fa6c2f..0000000 --- a/app/admin/controller/GalleryCate.php +++ /dev/null @@ -1,150 +0,0 @@ -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 deleted file mode 100644 index 6f1aa06..0000000 --- a/app/admin/controller/Goods.php +++ /dev/null @@ -1,223 +0,0 @@ -model = new GoodsModel(); - $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.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]; - $param['order'] = 'a.sort asc'; - $list = $this->model->getGoodsList($where, $param); - return table_assign(0, '', $list); - } - else{ - return view(); - } - } - - /** - * 添加 - */ - public function add() - { - 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['desc'])){ - $param['desc'] = getDescriptionFromContent($param['content'], 100); - } - $param['admin_id'] = $this->uid; - $this->model->addGoods($param); - }else{ - return view(); - } - } - - - /** - * 编辑 - */ - public function edit() - { - $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 deleted file mode 100644 index 7d1c34e..0000000 --- a/app/admin/controller/GoodsCate.php +++ /dev/null @@ -1,143 +0,0 @@ -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/Keywords.php b/app/admin/controller/Keywords.php deleted file mode 100644 index ecb17a6..0000000 --- a/app/admin/controller/Keywords.php +++ /dev/null @@ -1,100 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['title', 'like', '%' . $param['keywords'] . '%']; - } - $where[] = ['status', '>=', 0]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $content = Db::name('Keywords') - ->order('create_time desc') - ->where($where) - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $content); - } else { - return view(); - } - } - - //添加 - public function add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(KeywordsCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $res = Db::name('Keywords')->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - - return to_assign(); - } else { - try { - validate(KeywordsCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $insertId = Db::name('Keywords')->strict(false)->field(true)->insertGetId($param); - if ($insertId) { - add_log('add', $insertId, $param); - } - - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - if ($id > 0) { - $keywords = Db::name('Keywords')->where(['id' => $id])->find(); - View::assign('keywords', $keywords); - } - View::assign('id', $id); - return view(); - } - } - - //删除 - public function delete() - { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Keywords')->update($data) !== false) { - add_log('delete', $id, $data); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } -} diff --git a/app/admin/controller/Links.php b/app/admin/controller/Links.php deleted file mode 100644 index 2242272..0000000 --- a/app/admin/controller/Links.php +++ /dev/null @@ -1,99 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['id|name', 'like', '%' . $param['keywords'] . '%']; - } - $where[] = ['status', '=', 1]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $links = linksList::where($where) - ->order('sort desc, id desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $links); - } else { - return view(); - } - } - - //添加 - public function add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(linksCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $res = linksList::where('id', $param['id'])->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - return to_assign(); - } else { - try { - validate(linksCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $sid = linksList::strict(false)->field(true)->insertGetId($param); - if ($sid) { - add_log('add', $sid, $param); - } - return to_assign(); - } - } - else{ - $id = empty($param['id']) ? 0 : $param['id']; - if ($id > 0) { - $links = Db::name('Links')->where(['id' => $id])->find(); - View::assign('links', $links); - } - View::assign('id', $id); - return view(); - } - - } - - //删除 - public function delete() - { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Links')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } -} diff --git a/app/admin/controller/Nav.php b/app/admin/controller/Nav.php deleted file mode 100644 index 77ed771..0000000 --- a/app/admin/controller/Nav.php +++ /dev/null @@ -1,181 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['id|name|title|desc', 'like', '%' . $param['keywords'] . '%']; - } - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $nav = NavList::where($where) - ->order('create_time asc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $nav); - } else { - return view(); - } - } - - //添加 - public function add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(NavCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - NavList::where(['id' => $param['id']]) - ->strict(false) - ->field(true) - ->update($param); - // 删除导航缓存 - clear_cache('homeNav'); - add_log('edit', $param['id'], $param); - return to_assign(); - } else { - try { - validate(NavCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $nid = NavList::strict(false)->field(true)->insertGetId($param); - // 删除导航缓存 - clear_cache('homeNav'); - add_log('add', $nid, $param); - return to_assign(); - } - } else { - $id = isset($param['id']) ? $param['id'] : 0; - if ($id > 0) { - $nav = Db::name('Nav')->where(['id' => $id])->find(); - View::assign('nav', $nav); - } - View::assign('id', $id); - return view(); - } - } - - //删除 - public function delete() - { - $id = get_params('id'); - $count = Db::name('NavInfo')->where(['nav_id' => $id])->count(); - if ($count > 0) { - return to_assign(1, '该组下还有导航,无法删除'); - } - if (Db::name('Nav')->delete($id) !== false) { - return to_assign(0, '删除成功'); - // 删除导航缓存 - clear_cache('homeNav'); - add_log('delete', $id, []); - } else { - return to_assign(1, '删除失败'); - } - } - - //管理导航 - public function nav_info() - { - $param = get_params(); - if (request()->isAjax()) { - $id = $param['id']; - $navInfoList = Db::name('NavInfo') - ->where(['nav_id' => $id]) - ->order('sort asc') - ->select(); - return to_assign(0, '', $navInfoList); - } else { - return view('', [ - 'nav_id' => $param['id'], - ]); - } - - } - - //添加导航 - public function nav_info_add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(NavCheck::class)->scene('editInfo')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - NavInfo::strict(false)->field(true)->update($param); - // 删除导航缓存 - clear_cache('homeNav'); - add_log('edit', $param['id'], $param); - return to_assign(); - } else { - try { - validate(NavCheck::class)->scene('addInfo')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $nid = NavInfo::strict(false)->field(true)->insertGetId($param); - // 删除导航缓存 - clear_cache('homeNav'); - add_log('add', $nid, $param); - return to_assign(); - } - } else { - $id = isset($param['id']) ? $param['id'] : 0; - $nid = isset($param['nid']) ? $param['nid'] : 0; - $pid = isset($param['pid']) ? $param['pid'] : 0; - if ($id > 0) { - $nav = Db::name('NavInfo')->where(['id' => $id])->find(); - View::assign('nav', $nav); - $nid = $nav['nav_id']; - $pid = $nav['pid']; - } - View::assign('id', $id); - View::assign('nav_id', $nid); - View::assign('pid', $pid); - return view(); - } - } - - //删除 - public function nav_info_delete() - { - $id = get_params('id'); - if (Db::name('NavInfo')->delete($id) !== false) { - //清除导航缓存 - clear_cache('homeNav'); - add_log('delete', $id, []); - return to_assign(0, '删除成功'); - } else { - return to_assign(1, '删除失败'); - } - } -} diff --git a/app/admin/controller/Pages.php b/app/admin/controller/Pages.php deleted file mode 100644 index 8d01095..0000000 --- a/app/admin/controller/Pages.php +++ /dev/null @@ -1,169 +0,0 @@ -model = new PagesModel(); - $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.desc|a.content', 'like', '%' . $param['keywords'] . '%']; - } - $where[] = ['a.delete_time', '=', 0]; - $list = $this->model->getPagesList($where, $param); - return table_assign(0, '', $list); - } - else{ - return view(); - } - } - - /** - * 添加 - */ - public function add() - { - if (request()->isAjax()) { - $param = get_params(); - - // 检验完整性 - try { - validate(PagesValidate::class)->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['admin_id'] = $this->uid; - $this->model->addPages($param); - }else{ - $templates = get_file_list(CMS_ROOT . '/app/home/view/pages/'); - View::assign('templates', $templates); - return view(); - } - } - - - /** - * 编辑 - */ - public function edit() - { - $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/Sitemap.php b/app/admin/controller/Sitemap.php deleted file mode 100644 index bf80fcb..0000000 --- a/app/admin/controller/Sitemap.php +++ /dev/null @@ -1,201 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['id|name', 'like', '%' . $param['keywords'] . '%']; - } - $where[] = ['status', '=', 1]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $SitemapCate = SitemapCate::where($where) - ->order('sort desc, id desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $SitemapCate); - } else { - return view(); - } - } - - //添加 - public function add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(SitemapCateCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $res = SitemapCate::where('id', $param['id'])->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - - // 删除菜单缓存 - clear_cache('homeSitemap'); - return to_assign(); - } else { - try { - validate(SitemapCateCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $sid = SitemapCate::strict(false)->field(true)->insertGetId($param); - if ($sid) { - add_log('add', $sid, $param); - } - - // 删除菜单缓存 - clear_cache('homeSitemap'); - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - if ($id > 0) { - $cate = Db::name('SitemapCate')->where(['id' => $id])->find(); - View::assign('cate', $cate); - } - View::assign('id', $id); - return view(); - } - } - - //删除 - public function delete() - { - $id = get_params("id"); - $where[] = ['sitemap_cate_id', '=', $id]; - $where[] = ['status', '>=', 0]; - $count = Db::name('Sitemap')->where($where)->count(); - if ($count > 0) { - return to_assign(1, '该分类下还有数据,无法删除'); - } - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('SitemapCate')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } - - //管理网站地图 - public function sitemap_info() - { - $param = get_params(); - if (request()->isAjax()) { - $where = array(); - $where[] = ['sitemap_cate_id', '=', $param['id']]; - $where[] = ['status', '>=', 0]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $sitemap = SitemapInfo::where($where) - ->order('sort desc, id desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $sitemap); - } else { - return view('', [ - 'sitemap_cate_id' => $param['id'], - ]); - } - } - - //添加网站地图 - public function sitemap_info_add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(SitemapCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $param['name'] = htmlspecialchars($param['name']); - $res = SitemapInfo::where(['id' => $param['id']])->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - - // 删除导航缓存 - clear_cache('homeSitemap'); - return to_assign(); - } else { - try { - validate(SitemapCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['name'] = htmlspecialchars($param['name']); - $param['create_time'] = time(); - $sid = SitemapInfo::strict(false)->field(true)->insertGetId($param); - if ($sid) { - add_log('add', $sid, $param); - } - - // 删除导航缓存 - clear_cache('homeSitemap'); - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - $sitemap_cate_id = isset($param['cid']) ? $param['cid'] : 0; - if ($id > 0) { - $sitemap = Db::name('Sitemap')->where(['id' => $id])->find(); - View::assign('sitemap', $sitemap); - } - View::assign('id', $id); - View::assign('sitemap_cate_id', $sitemap_cate_id); - return view(); - } - } - - //删除网站地图 - public function sitemap_info_delete() - { - $id = get_params("id"); - $data['status'] = '-1'; - $data['id'] = $id; - $data['update_time'] = time(); - if (Db::name('Sitemap')->update($data) !== false) { - add_log('delete', $id); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } -} diff --git a/app/admin/controller/Slide.php b/app/admin/controller/Slide.php deleted file mode 100644 index 23fec04..0000000 --- a/app/admin/controller/Slide.php +++ /dev/null @@ -1,211 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['id|name|title|desc', 'like', '%' . $param['keywords'] . '%']; - } - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $slide = SlideList::where($where) - ->order('create_time asc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $slide); - } else { - return view(); - } - } - - //添加 - public function add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(SlideCheck::class)->scene('edit')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $res = SlideList::where('id', $param['id'])->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - - clear_cache('homeSlide'); - return to_assign(); - } else { - try { - validate(SlideCheck::class)->scene('add')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $sid = SlideList::strict(false)->field(true)->insertGetId($param); - if ($sid) { - add_log('add', $sid, $param); - } - - // 删除banner缓存 - clear_cache('homeSlide'); - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - if ($id > 0) { - $slide = Db::name('Slide')->where(['id' => $id])->find(); - View::assign('slide', $slide); - } - View::assign('id', $id); - return view(); - } - } - - //删除 - public function delete() - { - $id = get_params("id"); - $count = Db::name('SlideInfo')->where([ - 'slide_id' => $id, - ])->count(); - if ($count > 0) { - return to_assign(1, '该组下还有Banner,无法删除'); - } - if (Db::name('Slide')->delete($id) !== false) { - add_log('delete', $id); - clear_cache('homeSlide'); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } - - //管理幻灯片 - public function slide_info() - { - $param = get_params(); - if (request()->isAjax()) { - $where = array(); - $where[] = ['s.slide_id', '=', $param['id']]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $slideInfoList = SlideInfo::where($where) - ->alias('s') - ->join('File f', 's.img=f.id', 'LEFT') - ->field('s.*,f.filepath') - ->order('s.sort desc, s.id desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $slideInfoList); - } else { - return view('', [ - 'slide_id' => $param['id'], - ]); - } - } - - //幻灯片列表 - public function slide_info_list() - { - $param = get_params(); - $where = array(); - $where[] = ['s.slide_id', '=', $param['id']]; - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $slideInfoList = SlideInfo::where($where) - ->alias('s') - ->join('File f', 's.img=f.id', 'LEFT') - ->field('s.*,f.filepath') - ->order('s.sort desc, s.id desc') - ->paginate($rows, false, ['query' => $param]); - return table_assign(0, '', $slideInfoList); - } - - //添加幻灯片 - public function slide_info_add() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - try { - validate(SlideCheck::class)->scene('editInfo')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['update_time'] = time(); - $res = SlideInfo::where(['id' => $param['id']])->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - - // 删除缓存 - clear_cache('homeSlide'); - return to_assign(); - } else { - try { - validate(SlideCheck::class)->scene('addInfo')->check($param); - } catch (ValidateException $e) { - // 验证失败 输出错误信息 - return to_assign(1, $e->getError()); - } - $param['create_time'] = time(); - $sid = SlideInfo::strict(false)->field(true)->insertGetId($param); - if ($sid) { - add_log('add', $sid, $param); - } - - // 删除缓存 - clear_cache('homeSlide'); - return to_assign(); - } - } - else{ - $id = isset($param['id']) ? $param['id'] : 0; - $slide_id = isset($param['sid']) ? $param['sid'] : 0; - if ($id > 0) { - $slide_info = Db::name('SlideInfo')->where(['id' => $id])->find(); - View::assign('slide_info', $slide_info); - $slide_id = $slide_info['slide_id']; - } - View::assign('id', $id); - View::assign('slide_id', $slide_id); - return view(); - } - } - - //删除幻灯片 - public function slide_info_delete() - { - $id = get_params("id"); - if (Db::name('SlideInfo')->delete($id) !== false) { - add_log('delete', $id); - clear_cache('homeSlide'); - return to_assign(0, "删除成功"); - } else { - return to_assign(1, "删除失败"); - } - } -} diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php deleted file mode 100644 index decc1d8..0000000 --- a/app/admin/controller/User.php +++ /dev/null @@ -1,193 +0,0 @@ -isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['nickname|username|name|mobile|province|city', 'like', '%' . $param['keywords'] . '%']; - } - - //按时间检索 - $start_time = isset($param['start_time']) ? strtotime(urldecode($param['start_time'])) : 0; - $end_time = isset($param['end_time']) ? strtotime(urldecode($param['end_time'])) : 0; - - if ($start_time > 0 && $end_time > 0) { - if ($start_time === $end_time) { - $where[] = ['register_time', '=', $start_time]; - } else { - $where[] = ['register_time', '>=', $start_time]; - $where[] = ['register_time', '<=', $end_time]; - } - } elseif ($start_time > 0 && $end_time == 0) { - $where[] = ['register_time', '>=', $start_time]; - } elseif ($start_time == 0 && $end_time > 0) { - $where[] = ['register_time', '<=', $end_time]; - } - - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $content = UserList::where($where) - ->order('id desc') - ->paginate($rows, false, ['query' => $param]) - ->each(function ($item, $key) { - $item->register_time = empty($item->register_time) ? '-' : date('Y-m-d H:i', $item->register_time); - $item->level_name = Db::name('UserLevel')->where(['id' => $item->level])->value('title'); - }); - return table_assign(0, '', $content); - } else { - return view(); - } - } - - //编辑 - public function edit() - { - $param = get_params(); - if (request()->isAjax()) { - if (!empty($param['id']) && $param['id'] > 0) { - $param['update_time'] = time(); - $res = Db::name('User')->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 { - $id = isset($param['id']) ? $param['id'] : 0; - $user = Db::name('User')->where(['id' => $id])->find(); - $levels = Db::name('UserLevel')->where(['status' => 1])->select()->toArray(); - View::assign('user', $user); - View::assign('levels', $levels); - return view(); - } - } - - //查看 - public function view() - { - $id = empty(get_params('id')) ? 0 : get_params('id'); - $user = Db::name('User')->where(['id' => $id])->find(); - $user['level_name'] = Db::name('UserLevel')->where(['id' => $user['level']])->value('title'); - add_log('view', get_params('id')); - View::assign('user', $user); - return view(); - } - //禁用/启用 - public function disable() - { - $id = get_params("id"); - $data['status'] = get_params("status"); - $data['update_time'] = time(); - $data['id'] = $id; - if (Db::name('User')->update($data) !== false) { - if ($data['status'] == 0) { - add_log('disable', $id, $data); - } else if ($data['status'] == 1) { - add_log('recovery', $id, $data); - } - return to_assign(); - } else { - return to_assign(1, "操作失败"); - } - } - - //日志 - public function log() - { - if (request()->isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['nickname|content|param_id', 'like', '%' . $param['keywords'] . '%']; - } - if (!empty($param['action'])) { - $where[] = ['title', '=', $param['action']]; - } - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $content = DB::name('UserLog') - ->field("id,uid,nickname,title,content,ip,param_id,param,FROM_UNIXTIME(create_time,'%Y-%m-%d %H:%i:%s') create_time") - ->order('create_time desc') - ->where($where) - ->paginate($rows, false, ['query' => $param]); - - $content->toArray(); - foreach ($content as $k => $v) { - $data = $v; - $param_array = json_decode($v['param'], true); - $param_value = ''; - foreach ($param_array as $key => $value) { - if (is_array($value)) { - $value = array_to_string($value); - } - $param_value .= $key . ':' . $value . ' | '; - } - $data['param'] = $param_value; - $content->offsetSet($k, $data); - } - return table_assign(0, '', $content); - } else { - $type_action = get_config('log.user_action'); - View::assign('type_action', $type_action); - return view(); - } - } - - //记录 - public function record() - { - if (request()->isAjax()) { - $param = get_params(); - $where = array(); - if (!empty($param['keywords'])) { - $where[] = ['nickname|title', 'like', '%' . $param['keywords'] . '%']; - } - $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit']; - $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); - $name = ''; - if (!empty($param_array['name'])) { - $name = ':' . $param_array['name']; - } - if (!empty($param_array['title'])) { - $name = ':' . $param_array['title']; - } - $data['content'] = $v['content'] . $name; - $data['times'] = $date_set->time_trans($v['create_time']); - $content->offsetSet($k, $data); - } - return table_assign(0, '', $content); - } else { - return view(); - } - } - -} diff --git a/app/admin/model/Article.php b/app/admin/model/Article.php deleted file mode 100644 index 9b4cf0f..0000000 --- a/app/admin/model/Article.php +++ /dev/null @@ -1,140 +0,0 @@ - $value) { - if (!$value) { - continue; - } - $keywords_id = (new Keywords())->increase($value); - $insert[] = ['aid' => $aid, - 'keywords_id' => $keywords_id, - 'create_time' => $time, - ]; - } - $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 = self::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 deleted file mode 100644 index e093bc0..0000000 --- a/app/admin/model/ArticleCate.php +++ /dev/null @@ -1,100 +0,0 @@ -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 deleted file mode 100644 index 25e1e29..0000000 --- a/app/admin/model/Gallery.php +++ /dev/null @@ -1,203 +0,0 @@ - $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 = self::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 = []; - if(is_array($filepathData)){ - 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 deleted file mode 100644 index 4dd424e..0000000 --- a/app/admin/model/GalleryCate.php +++ /dev/null @@ -1,101 +0,0 @@ -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 deleted file mode 100644 index 4a9d5fd..0000000 --- a/app/admin/model/Goods.php +++ /dev/null @@ -1,138 +0,0 @@ - $value) { - if (!$value) { - continue; - } - $keywords_id = (new Keywords())->increase($value); - $insert[] = ['aid' => $aid, - 'keywords_id' => $keywords_id, - 'create_time' => $time, - ]; - } - $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 = self::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 deleted file mode 100644 index 102def8..0000000 --- a/app/admin/model/GoodsCate.php +++ /dev/null @@ -1,101 +0,0 @@ -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/Keywords.php b/app/admin/model/Keywords.php deleted file mode 100644 index a487c24..0000000 --- a/app/admin/model/Keywords.php +++ /dev/null @@ -1,26 +0,0 @@ -where('title', $keywords)->find(); - if ($is_exist) { - $res = $is_exist['id']; - } else { - $res = $this->strict(false)->field(true)->insertGetId(['title' => $keywords, 'create_time' => time()]); - } - return $res; - } -} diff --git a/app/admin/model/Links.php b/app/admin/model/Links.php deleted file mode 100644 index 8bb114a..0000000 --- a/app/admin/model/Links.php +++ /dev/null @@ -1,17 +0,0 @@ - $value) { - if (!$value) { - continue; - } - $keywords_id = (new Keywords())->increase($value); - $insert[] = ['aid' => $aid, - 'keywords_id' => $keywords_id, - 'create_time' => $time, - ]; - } - $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') - ->leftJoin('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/model/Sitemap.php b/app/admin/model/Sitemap.php deleted file mode 100644 index d6a34bb..0000000 --- a/app/admin/model/Sitemap.php +++ /dev/null @@ -1,34 +0,0 @@ -hasMany('sitemap', 'sitemap_cate_id', 'id')->order('sort desc, id desc'); - } - -} diff --git a/app/admin/model/Slide.php b/app/admin/model/Slide.php deleted file mode 100644 index 56bb89b..0000000 --- a/app/admin/model/Slide.php +++ /dev/null @@ -1,15 +0,0 @@ -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/ArticleValidate.php b/app/admin/validate/ArticleValidate.php deleted file mode 100644 index 1a3141d..0000000 --- a/app/admin/validate/ArticleValidate.php +++ /dev/null @@ -1,26 +0,0 @@ - '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/GalleryCateValidate.php b/app/admin/validate/GalleryCateValidate.php deleted file mode 100644 index 12722b2..0000000 --- a/app/admin/validate/GalleryCateValidate.php +++ /dev/null @@ -1,29 +0,0 @@ -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 deleted file mode 100644 index aeae19a..0000000 --- a/app/admin/validate/GalleryValidate.php +++ /dev/null @@ -1,24 +0,0 @@ - '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/GoodsCateValidate.php b/app/admin/validate/GoodsCateValidate.php deleted file mode 100644 index 3e49d05..0000000 --- a/app/admin/validate/GoodsCateValidate.php +++ /dev/null @@ -1,20 +0,0 @@ - 'require', -]; - - protected $message = [ - 'title.require' => '分类名称不能为空', -]; -} \ No newline at end of file diff --git a/app/admin/validate/GoodsValidate.php b/app/admin/validate/GoodsValidate.php deleted file mode 100644 index f7be889..0000000 --- a/app/admin/validate/GoodsValidate.php +++ /dev/null @@ -1,32 +0,0 @@ - '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/KeywordsCheck.php b/app/admin/validate/KeywordsCheck.php deleted file mode 100644 index e5f6976..0000000 --- a/app/admin/validate/KeywordsCheck.php +++ /dev/null @@ -1,31 +0,0 @@ - 'require|unique:keywords', - 'id' => 'require', - ]; - - protected $message = [ - 'title.require' => '关键字名称不能为空', - 'title.unique' => '同样的关键字名称已经存在', - 'id.require' => '缺少更新条件', - ]; - - protected $scene = [ - 'add' => ['title'], - 'edit' => ['id', 'title'], - ]; - -} diff --git a/app/admin/validate/NavCheck.php b/app/admin/validate/NavCheck.php deleted file mode 100644 index 812641a..0000000 --- a/app/admin/validate/NavCheck.php +++ /dev/null @@ -1,39 +0,0 @@ - 'require|unique:nav', - 'name' => 'require|unique:nav', - 'id' => 'require', - 'status' => 'require', - 'slide_id' => 'require', - ]; - - protected $message = [ - 'title.require' => '标题不能为空', - 'title.unique' => '同样的标题已经存在', - 'name.require' => '标识不能为空', - 'name.unique' => '同样的标识已经存在', - 'id.require' => '缺少更新条件', - 'status.require' => '状态为必选', - 'slide_id.require' => '缺少导航组ID', - 'filed.require' => '缺少要更新的字段名', - ]; - - protected $scene = [ - 'add' => ['title', 'name', 'status'], - 'edit' => ['id', 'title', 'name', 'status'], - 'addInfo' => ['title', 'nav_id'], - 'editInfo' => ['id', 'title'], - ]; -} diff --git a/app/admin/validate/PagesValidate.php b/app/admin/validate/PagesValidate.php deleted file mode 100644 index ccb1fd6..0000000 --- a/app/admin/validate/PagesValidate.php +++ /dev/null @@ -1,26 +0,0 @@ - '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/SitemapCateCheck.php b/app/admin/validate/SitemapCateCheck.php deleted file mode 100644 index 87f05cf..0000000 --- a/app/admin/validate/SitemapCateCheck.php +++ /dev/null @@ -1,29 +0,0 @@ - 'require|unique:sitemap_cate', - 'id' => 'require', - ]; - - protected $message = [ - 'name.require' => '名称不能为空', - 'name.unique' => '同样的名称已经存在', - 'id.require' => '缺少更新条件', - ]; - - protected $scene = [ - 'add' => ['name'], - 'edit' => ['id', 'name'], - ]; -} diff --git a/app/admin/validate/SitemapCheck.php b/app/admin/validate/SitemapCheck.php deleted file mode 100644 index 1b2c468..0000000 --- a/app/admin/validate/SitemapCheck.php +++ /dev/null @@ -1,40 +0,0 @@ - 'require', - 'id' => 'require', - 'sitemap_cate_id' => 'require', - 'pc_img' => 'require', - 'pc_src' => 'require|url', - 'mobile_img' => 'require', - 'mobile_src' => 'require|url', - ]; - - protected $message = [ - 'name.require' => '名称不能为空', - 'pc_img.require' => 'PC端图片不能为空', - 'pc_src.require' => 'PC端链接不能为空', - 'pc_src.url' => 'PC端链接必须以http开头', - 'mobile_img.require' => '移动端图片不能为空', - 'mobile_src.require' => '移动端链接不能为空', - 'mobile_src.url' => '移动端链接必须以http开头', - 'id.require' => '缺少更新条件', - 'sitemap_cate_id.require' => '缺少更新条件', - ]; - - protected $scene = [ - 'add' => ['sitemap_cate_id', 'name', 'pc_src', 'mobile_src'], - 'edit' => ['id', 'name', 'pc_src', 'mobile_src'], - ]; -} diff --git a/app/admin/validate/SlideCheck.php b/app/admin/validate/SlideCheck.php deleted file mode 100644 index 40966b6..0000000 --- a/app/admin/validate/SlideCheck.php +++ /dev/null @@ -1,40 +0,0 @@ - 'require|unique:slide', - 'name' => 'require|unique:slide', - 'id' => 'require', - 'status' => 'require', - 'img' => 'require', - 'slide_id' => 'require', - ]; - - protected $message = [ - 'title.require' => '标题不能为空', - 'title.unique' => '同样的标题已经存在', - 'name.require' => '标识不能为空', - 'name.unique' => '同样的标识已经存在', - 'id.require' => '缺少更新条件', - 'status.require' => '状态为必选', - 'img.require' => '请上传图片', - 'slide_id.require' => '缺少换灯组ID', - ]; - - protected $scene = [ - 'add' => ['title', 'name', 'status'], - 'edit' => ['id', 'title', 'name', 'status'], - 'addInfo' => ['title', 'img', 'status', 'slide_id'], - 'editInfo' => ['title', 'img', 'status', 'id'], - ]; -} diff --git a/app/admin/validate/UserCheck.php b/app/admin/validate/UserCheck.php deleted file mode 100644 index b74964a..0000000 --- a/app/admin/validate/UserCheck.php +++ /dev/null @@ -1,26 +0,0 @@ - 'require', - 'password' => 'require', - 'captcha' => 'require|captcha', - ]; - - protected $message = [ - 'username.require' => '用户名不能为空', - 'password.require' => '密码不能为空', - 'captcha.require' => '验证码不能为空', - 'captcha.captcha' => '验证码不正确', - ]; -} diff --git a/app/admin/validate/linksCheck.php b/app/admin/validate/linksCheck.php deleted file mode 100644 index 20f0d48..0000000 --- a/app/admin/validate/linksCheck.php +++ /dev/null @@ -1,35 +0,0 @@ - 'require|unique:links', - 'src' => 'require|url|unique:links', - 'id' => 'require', - ]; - - protected $message = [ - 'name.require' => '网站名称不能为空', - 'name.unique' => '同样的网站名称已经存在', - 'src' => '网站链接不能为空', - 'src.url' => '网站链接不是有效的URL地址', - 'src.unique' => '同样的网站链接已经存在', - 'id.require' => '缺少更新条件', - ]; - - protected $scene = [ - 'add' => ['name', 'src'], - 'edit' => ['id', 'name', 'src'], - ]; -} diff --git a/app/admin/view/article/add.html b/app/admin/view/article/add.html deleted file mode 100644 index cc3ce43..0000000 --- a/app/admin/view/article/add.html +++ /dev/null @@ -1,210 +0,0 @@ -{extend name="common/base"/} -{block name="style"} - -{/block} - -{block name="body"} -
-{/block} - - - -{block name="script"} - -{/block} - \ No newline at end of file diff --git a/app/admin/view/article/datalist.html b/app/admin/view/article/datalist.html deleted file mode 100644 index af35217..0000000 --- a/app/admin/view/article/datalist.html +++ /dev/null @@ -1,173 +0,0 @@ -{extend name="common/base"/} - -{block name="body"} - -文章标题 | -{$detail.title} | -所属分类 | -- {volist name=":set_recursion(get_article_cate())" id="v"} - {eq name="$detail.cate_id" value="$v.id" }{$v.title}{/eq} - {/volist} - | -||
关键字 | -{$detail.keyword_names} | -文章属性 | -- {eq name="$detail.type" value="1"}精华{/eq} - {eq name="$detail.type" value="2"}热门{/eq} - {eq name="$detail.type" value="3"}推荐{/eq} - | -||
是否原创 | -- {eq name="$detail.original" value="1"}是{/eq} - {eq name="$detail.original" value="0"}否{/eq} - | -来源或作者 | -{$detail.origin} | -来源地址 | -{$detail.origin_url} | -
排序 | -{$detail.sort} | -是否首页显示 | -- {eq name="$detail.is_home" value="1"}是{/eq} - {eq name="$detail.is_home" value="0"}否{/eq} - | -缩略图 | -
- |
-
创建时间 | -{$detail.create_time} | -状态 | -- {eq name="$detail.status" value="1"}正常{/eq} - {eq name="$detail.status" value="0"}下架{/eq} - | -||
文章摘要 | -{$detail.desc} | -||||
文章内容 | -- {$detail.content|raw} - | -