| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\store\controller\content;
- use app\store\controller\Controller;
- use app\store\model\Article as ArticleModel;
- use app\store\model\article\Category as CategoryModel;
- /**
- * 文章管理控制器
- * Class article
- * @package app\store\controller\content
- */
- class Article extends Controller
- {
- /**
- * 文章列表
- * @return mixed
- * @throws \think\exception\DbException
- */
- public function index()
- {
- $model = new ArticleModel;
- $list = $model->getList();
- return $this->fetch('index', compact('list'));
- }
- /**
- * 添加文章
- * @return array|mixed
- */
- public function add()
- {
- $model = new ArticleModel;
- if (!$this->request->isAjax()) {
- // 文章分类
- $catgory = CategoryModel::getAll();
- return $this->fetch('add', compact('catgory'));
- }
- // 新增记录
- if ($model->add($this->postData('article'))) {
- return $this->renderSuccess('添加成功', url('content.article/index'));
- }
- return $this->renderError($model->getError() ?: '添加失败');
- }
- /**
- * 更新文章
- * @param $article_id
- * @return array|mixed
- * @throws \think\exception\DbException
- */
- public function edit($article_id)
- {
- // 文章详情
- $model = ArticleModel::detail($article_id);
- if (!$this->request->isAjax()) {
- // 文章分类
- $catgory = CategoryModel::getAll();
- return $this->fetch('edit', compact('model', 'catgory'));
- }
- // 更新记录
- if ($model->edit($this->postData('article'))) {
- return $this->renderSuccess('更新成功', url('content.article/index'));
- }
- return $this->renderError($model->getError() ?: '更新失败');
- }
- /**
- * 删除文章
- * @param $article_id
- * @return array
- * @throws \think\exception\DbException
- */
- public function delete($article_id)
- {
- // 文章详情
- $model = ArticleModel::detail($article_id);
- if (!$model->setDelete()) {
- return $this->renderError($model->getError() ?: '删除失败');
- }
- return $this->renderSuccess('删除成功');
- }
- }
|