123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\store\model;
- use app\common\model\Article as ArticleModel;
- /**
- * 文章模型
- * Class Article
- * @package app\store\model
- */
- class Article extends ArticleModel
- {
- /**
- * 获取列表
- * @param array $param
- * @return \think\Paginator
- * @throws \think\db\exception\DbException
- */
- public function getList(array $param = []): \think\Paginator
- {
- // 查询参数
- $params = $this->setQueryDefaultValue($param, [
- 'title' => '', // 文章标题
- 'categoryId' => 0, // 文章分类id
- 'status' => -1, // 文章状态
- ]);
- // 检索查询条件
- $filter = [];
- // 文章标题
- !empty($params['title']) && $filter[] = ['title', 'like', "%{$params['title']}%"];
- // 文章分类id
- $params['categoryId'] > 0 && $filter[] = ['category_id', '=', $params['categoryId']];
- // 文章状态
- $params['status'] > -1 && $filter[] = ['status', '=', $params['status']];
- // 查询列表数据
- return $this->with(['image', 'category'])
- ->withoutField(['content'])
- ->where($filter)
- ->where('is_delete', '=', 0)
- ->order(['sort' => 'asc', 'create_time' => 'desc'])
- ->paginate(15);
- }
- /**
- * 新增记录
- * @param array $data
- * @return bool
- */
- public function add(array $data): bool
- {
- if (empty($data['image_id'])) {
- $this->error = '请上传封面图';
- return false;
- }
- if (empty($data['content'])) {
- $this->error = '请输入文章内容';
- return false;
- }
- $data['store_id'] = self::$storeId;
- return $this->save($data);
- }
- /**
- * 更新记录
- * @param array $data
- * @return bool
- */
- public function edit(array $data): bool
- {
- if (empty($data['image_id'])) {
- $this->error = '请上传封面图';
- return false;
- }
- if (empty($data['content'])) {
- $this->error = '请输入文章内容';
- return false;
- }
- return $this->save($data) !== false;
- }
- /**
- * 软删除
- * @return bool
- */
- public function setDelete(): bool
- {
- return $this->save(['is_delete' => 1]);
- }
- /**
- * 获取文章总数量
- * @param array $where
- * @return int
- */
- public static function getArticleTotal(array $where = []): int
- {
- return (new static)->where($where)->where('is_delete', '=', 0)->count();
- }
- }
|