mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-04 21:09:43 +08:00
139 lines
3.8 KiB
PHP
139 lines
3.8 KiB
PHP
<?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\admin\controller;
|
|
|
|
use app\service\GoodsFavorService;
|
|
|
|
/**
|
|
* 商品收藏管理
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
class Goodsfavor extends Common
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-03T12:39:08+0800
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// 调用父类前置方法
|
|
parent::__construct();
|
|
|
|
// 登录校验
|
|
$this->IsLogin();
|
|
|
|
// 权限校验
|
|
$this->IsPower();
|
|
}
|
|
|
|
/**
|
|
* 列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
public function Index()
|
|
{
|
|
// 总数
|
|
$total = GoodsFavorService::GoodsFavorTotal($this->form_where);
|
|
|
|
// 分页
|
|
$page_params = [
|
|
'number' => $this->page_size,
|
|
'total' => $total,
|
|
'where' => $this->data_request,
|
|
'page' => $this->page,
|
|
'url' => MyUrl('admin/goodsfavor/index'),
|
|
];
|
|
$page = new \base\Page($page_params);
|
|
|
|
// 获取列表
|
|
$data_params = [
|
|
'where' => $this->form_where,
|
|
'm' => $page->GetPageStarNumber(),
|
|
'n' => $this->page_size,
|
|
'order_by' => $this->form_order_by['data'],
|
|
'is_public' => 0,
|
|
'user_type' => 'admin',
|
|
];
|
|
$ret = GoodsFavorService::GoodsFavorList($data_params);
|
|
|
|
// 基础参数赋值
|
|
$this->assign('params', $this->data_request);
|
|
$this->assign('page_html', $page->GetPageHtml());
|
|
$this->assign('data_list', $ret['data']);
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 详情
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
public function Detail()
|
|
{
|
|
if(!empty($this->data_request['id']))
|
|
{
|
|
// 条件
|
|
$where = [
|
|
['f.id', '=', intval($this->data_request['id'])],
|
|
];
|
|
|
|
// 获取列表
|
|
$data_params = [
|
|
'm' => 0,
|
|
'n' => 1,
|
|
'where' => $where,
|
|
'is_public' => 0,
|
|
'user_type' => 'admin',
|
|
];
|
|
$ret = GoodsFavorService::GoodsFavorList($data_params);
|
|
$data = (empty($ret['data']) || empty($ret['data'][0])) ? [] : $ret['data'][0];
|
|
$this->assign('data', $data);
|
|
}
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 删除
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
public function Delete()
|
|
{
|
|
// 是否ajax请求
|
|
if(!IS_AJAX)
|
|
{
|
|
return $this->error('非法访问');
|
|
}
|
|
|
|
// 开始处理
|
|
$params = $this->data_request;
|
|
$params['user_type'] = 'admin';
|
|
return GoodsFavorService::GoodsFavorDelete($params);
|
|
}
|
|
}
|
|
?>
|