111 lines
3.0 KiB
PHP
Executable File
111 lines
3.0 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\index\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
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-11-30
|
|
* @desc description
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// 是否登录
|
|
$this->IsLogin();
|
|
}
|
|
|
|
/**
|
|
* 商品浏览列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-10-09
|
|
* @desc description
|
|
*/
|
|
public function Index()
|
|
{
|
|
// 参数
|
|
$params = input();
|
|
$params['user'] = $this->user;
|
|
|
|
// 分页
|
|
$number = 10;
|
|
|
|
// 条件
|
|
$where = GoodsService::UserGoodsBrowseListWhere($params);
|
|
|
|
// 获取总数
|
|
$total = GoodsService::GoodsBrowseTotal($where);
|
|
|
|
// 分页
|
|
$page_params = array(
|
|
'number' => $number,
|
|
'total' => $total,
|
|
'where' => $params,
|
|
'page' => isset($params['page']) ? intval($params['page']) : 1,
|
|
'url' => MyUrl('index/usergoodsbrowse/index'),
|
|
);
|
|
$page = new \base\Page($page_params);
|
|
$this->assign('page_html', $page->GetPageHtml());
|
|
|
|
// 获取列表
|
|
$data_params = array(
|
|
'm' => $page->GetPageStarNumber(),
|
|
'n' => $number,
|
|
'where' => $where,
|
|
);
|
|
$data = GoodsService::GoodsBrowseList($data_params);
|
|
$this->assign('data_list', $data['data']);
|
|
$this->assign('ids', empty($data['data']) ? '' : implode(',', array_column($data['data'], 'id')));
|
|
|
|
// 参数
|
|
$this->assign('params', $params);
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 商品浏览删除
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-09-14
|
|
* @desc description
|
|
*/
|
|
public function Delete()
|
|
{
|
|
// 是否ajax请求
|
|
if(!IS_AJAX)
|
|
{
|
|
$this->error('非法访问');
|
|
}
|
|
|
|
// 开始处理
|
|
$params = input('post.');
|
|
$params['user'] = $this->user;
|
|
return GoodsService::GoodsBrowseDelete($params);
|
|
}
|
|
}
|
|
?>
|