初始上传
This commit is contained in:
61
app/api/controller/Help.php
Executable file
61
app/api/controller/Help.php
Executable file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
/**
|
||||
* Index.php
|
||||
* Niushop商城系统 - 团队十年电商经验汇集巨献!
|
||||
* =========================================================
|
||||
* Copy right 2015-2025 杭州牛之云科技有限公司, 保留所有权利。
|
||||
* ----------------------------------------------
|
||||
* 官方网址: https://www.niushop.com
|
||||
|
||||
* =========================================================
|
||||
* @author : niuteam
|
||||
* @date : 2022.8.8
|
||||
* @version : v5.0.0.1
|
||||
*/
|
||||
|
||||
namespace app\api\controller;
|
||||
|
||||
use app\model\web\Help as HelpModel;
|
||||
|
||||
/**
|
||||
* 系统帮助
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
class Help extends BaseApi
|
||||
{
|
||||
|
||||
/**
|
||||
* 基础信息
|
||||
*/
|
||||
public function info()
|
||||
{
|
||||
$help_id = $this->params['id'] ?? 0;
|
||||
if (empty($help_id)) {
|
||||
return $this->response($this->error('', 'REQUEST_ID'));
|
||||
}
|
||||
$help = new HelpModel();
|
||||
$info = $help->getHelpInfo($help_id);
|
||||
return $this->response($info);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页列表信息
|
||||
*/
|
||||
public function page()
|
||||
{
|
||||
$page = $this->params['page'] ?? 1;
|
||||
$page_size = $this->params['page_size'] ?? PAGE_LIST_ROWS;
|
||||
$class_id = $this->params['class_id'] ?? 0;
|
||||
|
||||
$condition = [
|
||||
['class_id', '=', $class_id],
|
||||
['site_id', '=', $this->site_id]
|
||||
];
|
||||
$order = 'sort asc, create_time desc';
|
||||
$field = 'id,title,class_id,class_name,sort,create_time';
|
||||
$help = new HelpModel();
|
||||
$list = $help->getHelpPageList($condition, $page, $page_size, $order, $field);
|
||||
return $this->response($list);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user