mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-05 05:13:29 +08:00
debug
This commit is contained in:
90
application/api/controller/Usergoodsbrowse.php
Executable file
90
application/api/controller/Usergoodsbrowse.php
Executable file
@ -0,0 +1,90 @@
|
||||
<?php
|
||||
namespace app\api\controller;
|
||||
|
||||
use app\service\GoodsService;
|
||||
|
||||
/**
|
||||
* 用户商品浏览
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-01T21:51:08+0800
|
||||
*/
|
||||
class UserGoodsBrowse extends Common
|
||||
{
|
||||
/**
|
||||
* [__construct 构造方法]
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-03T12:39:08+0800
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
// 调用父类前置方法
|
||||
parent::__construct();
|
||||
|
||||
// 是否登录
|
||||
$this->Is_Login();
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品浏览列表
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-10-09
|
||||
* @desc description
|
||||
*/
|
||||
public function Index()
|
||||
{
|
||||
// 参数
|
||||
$params = $this->data_post;
|
||||
$params['user'] = $this->user;
|
||||
|
||||
// 分页
|
||||
$number = 10;
|
||||
$page = max(1, isset($this->data_post['page']) ? intval($this->data_post['page']) : 1);
|
||||
|
||||
// 条件
|
||||
$where = GoodsService::UserGoodsBrowseListWhere($params);
|
||||
|
||||
// 获取总数
|
||||
$total = GoodsService::GoodsBrowseTotal($where);
|
||||
$page_total = ceil($total/$number);
|
||||
$start = intval(($page-1)*$number);
|
||||
|
||||
// 获取列表
|
||||
$data_params = array(
|
||||
'limit_start' => $start,
|
||||
'limit_number' => $number,
|
||||
'where' => $where,
|
||||
);
|
||||
$data = GoodsService::GoodsBrowseList($data_params);
|
||||
|
||||
// 返回数据
|
||||
$result = [
|
||||
'total' => $total,
|
||||
'page_total' => $page_total,
|
||||
'data' => $data['data'],
|
||||
];
|
||||
return json(DataReturn('success', 0, $result));
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品浏览删除
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-09-14
|
||||
* @desc description
|
||||
*/
|
||||
public function Delete()
|
||||
{
|
||||
$params = $this->data_post;
|
||||
$params['user'] = $this->user;
|
||||
$ret = GoodsService::GoodsBrowseDelete($params);
|
||||
return json($ret);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user