You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/api/controller/Article.php

58 lines
1.8 KiB

11 months ago
<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\api\controller;
use app\api\model\Article as ArticleModel;
10 months ago
use think\response\Json;
11 months ago
/**
* 文章控制器
* Class Article
* @package app\api\controller
*/
class Article extends Controller
{
/**
* 文章列表
* @param int $categoryId
* @return Json
* @throws \think\db\exception\DbException
*/
public function list(int $categoryId = 0): Json
{
$model = new ArticleModel;
10 months ago
$title = (string)$this->request->input('title');
$list = $model->getList($categoryId, 15, $title);
11 months ago
return $this->renderSuccess(compact('list'));
}
/**
* 文章详情
* @param int $articleId
* @return Json
* @throws \cores\exception\BaseException
*/
public function detail(int $articleId): Json
{
$detail = ArticleModel::getDetail($articleId);
return $this->renderSuccess(compact('detail'));
}
10 months ago
public function helpCenter(): Json
{
$model = new ArticleModel;
$list = $model->helpCenter();
return $this->renderSuccess(compact('list'));
}
11 months ago
}