shopxo/application/service/NavigationService.php

1084 lines
37 KiB
PHP
Raw Normal View History

2018-12-28 18:58:37 +08:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2019-02-18 13:52:07 +08:00
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
2018-12-28 18:58:37 +08:00
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\service;
use think\Db;
2019-03-11 17:57:15 +08:00
use think\facade\Hook;
2020-01-30 13:42:59 +08:00
use app\service\BuyService;
use app\service\MessageService;
use app\service\OrderService;
use app\service\GoodsService;
2020-06-30 19:31:09 +08:00
use app\service\GoodsBrowseService;
2020-07-01 22:46:52 +08:00
use app\service\GoodsFavorService;
use app\service\IntegralService;
2018-12-28 18:58:37 +08:00
/**
* 导航服务层
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class NavigationService
{
/**
2019-03-11 17:57:15 +08:00
* 获取导航
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-08-29
* @desc description
* @param [array] $params [输入参数]
*/
2019-03-11 17:57:15 +08:00
public static function Nav($params = [])
2018-12-28 18:58:37 +08:00
{
// 读取缓存数据
2018-12-29 13:13:09 +08:00
$header = cache(config('shopxo.cache_common_home_nav_header_key'));
$footer = cache(config('shopxo.cache_common_home_nav_footer_key'));
2018-12-28 18:58:37 +08:00
// 缓存没数据则从数据库重新读取,顶部菜单
2020-09-28 22:47:21 +08:00
if(empty($header) || config('app_debug'))
2018-12-28 18:58:37 +08:00
{
2020-04-04 21:49:58 +08:00
// 获取导航数据
2020-06-16 23:27:12 +08:00
$header = self::NavDataAll('header');
2018-12-28 18:58:37 +08:00
}
// 底部导航
2020-09-28 22:47:21 +08:00
if(empty($footer) || config('app_debug'))
2018-12-28 18:58:37 +08:00
{
2020-06-16 23:27:12 +08:00
// 获取导航数据
$footer = self::NavDataAll('footer');
2018-12-28 18:58:37 +08:00
}
2020-04-04 21:49:58 +08:00
// 中间大导航添加首页导航
array_unshift($header, [
'id' => 0,
'pid' => 0,
'name' => '首页',
'url' => __MY_URL__,
'data_type' => 'system',
'is_show' => 1,
'is_new_window_open' => 0,
'items' => [],
]);
// 选中处理
if(!empty($header))
{
foreach($header as &$v)
{
$v['active'] = ($v['url'] == __MY_VIEW_URL__) ? 1 : 0;
if($v['active'] == 0 && !empty($v['items']))
{
$status = false;
foreach($v['items'] as &$vs)
{
if($vs['url'] == __MY_VIEW_URL__)
{
$vs['active'] = 1;
$status = true;
} else {
$vs['active'] = 0;
}
}
// 当子元素被选中则父级也选中
if($status)
{
$v['active'] = 1;
}
}
}
}
2019-03-11 17:57:15 +08:00
2018-12-28 18:58:37 +08:00
return [
'header' => $header,
'footer' => $footer,
];
}
2020-06-16 23:27:12 +08:00
/**
* 获取导航数据
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-15
* @desc description
* @param [string] $nav_type [导航类型header, footer]
*/
public static function NavDataAll($nav_type)
{
// 获取导航数据
2020-06-20 22:04:28 +08:00
$field = 'id,pid,name,url,value,data_type,is_new_window_open';
2020-07-03 23:18:46 +08:00
$order_by = 'sort asc,id asc';
2020-06-20 22:04:28 +08:00
$data = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>$nav_type, 'is_show'=>1, 'pid'=>0))->order($order_by)->select());
2020-06-16 23:27:12 +08:00
if(!empty($data))
{
// 获取子数据
$items = [];
$ids = array_column($data, 'id');
2020-06-20 22:04:28 +08:00
$items_data = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>$nav_type, 'is_show'=>1, 'pid'=>$ids))->order($order_by)->select());
2020-06-16 23:27:12 +08:00
if(!empty($items_data))
{
foreach($items_data as $it)
{
$items[$it['pid']][] = $it;
}
}
// 数据组合
foreach($data as &$v)
{
$v['items'] = isset($items[$v['id']]) ? $items[$v['id']] : [];
}
}
// 大导航钩子
$hook_name = 'plugins_service_navigation_'.$nav_type.'_handle';
Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
$nav_type => &$data,
]);
// 缓存
cache(config('shopxo.cache_common_home_nav_'.$nav_type.'_key'), $data);
return $data;
}
2018-12-28 18:58:37 +08:00
/**
* [NavDataDealWith 导航数据处理]
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-02-05T21:36:46+0800
* @param [array] $data [需要处理的数据]
* @return [array] [处理好的数据]
*/
public static function NavDataDealWith($data)
2018-12-28 18:58:37 +08:00
{
if(!empty($data) && is_array($data))
{
foreach($data as $k=>$v)
{
// url处理
switch($v['data_type'])
{
// 文章分类
case 'article':
$v['url'] = MyUrl('index/article/index', ['id'=>$v['value']]);
break;
// 自定义页面
case 'customview':
$v['url'] = MyUrl('index/customview/index', ['id'=>$v['value']]);
break;
// 商品分类
case 'goods_category':
$v['url'] = MyUrl('index/search/index', ['category_id'=>$v['value']]);
break;
}
$data[$k] = $v;
}
}
return $data;
}
/**
* 获取导航列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
2020-06-16 23:27:12 +08:00
* @param [array] $params [输入参数]
2018-12-28 18:58:37 +08:00
*/
public static function NavList($params = [])
2018-12-28 18:58:37 +08:00
{
// 基础参数
$field = '*';
2020-06-16 23:27:12 +08:00
$where = empty($params['where']) ? [] : $params['where'];
$order_by = empty($params['order_by']) ? 'sort asc,id asc' : $params['order_by'];
// 获取数据
2020-06-16 23:27:12 +08:00
$where1 = $where;
$where1[] = ['pid', '=', 0];
2020-07-03 23:18:46 +08:00
$data = self::NavigationHandle(self::NavDataDealWith(Db::name('Navigation')->field($field)->where($where1)->order($order_by)->select()));
2020-06-28 22:50:10 +08:00
$result = [];
2020-06-16 23:27:12 +08:00
if(!empty($data))
2018-12-28 18:58:37 +08:00
{
2020-06-28 22:50:10 +08:00
// 子级数据组合
2020-06-16 23:27:12 +08:00
$where2 = $where;
$where2[] = ['pid', 'in', array_column($data, 'id')];
2020-07-03 23:18:46 +08:00
$items_data = self::NavigationHandle(self::NavDataDealWith(Db::name('Navigation')->field($field)->where($where2)->order($order_by)->select()));
2020-06-28 22:50:10 +08:00
$items_group = [];
2020-06-16 23:27:12 +08:00
if(!empty($items_data))
{
2020-06-28 22:50:10 +08:00
foreach($items_data as $tv)
2020-06-16 23:27:12 +08:00
{
2020-06-28 22:50:10 +08:00
$items_group[$tv['pid']][] = $tv;
2020-06-16 23:27:12 +08:00
}
}
2020-06-28 22:50:10 +08:00
// 数据集合
2020-07-07 18:58:29 +08:00
if(!empty($items_group))
2020-06-16 23:27:12 +08:00
{
2020-07-07 18:58:29 +08:00
foreach($data as $dv)
2020-06-16 23:27:12 +08:00
{
2020-07-07 18:58:29 +08:00
if(array_key_exists($dv['id'], $items_group))
{
$dv['is_sub_data'] = 1;
$result[] = $dv;
$result = array_merge($result, $items_group[$dv['id']]);
} else {
$result[] = $dv;
}
2020-06-16 23:27:12 +08:00
}
2020-07-07 18:58:29 +08:00
} else {
$result = $data;
2020-06-16 23:27:12 +08:00
}
2018-12-28 18:58:37 +08:00
}
2020-06-28 22:50:10 +08:00
return DataReturn('处理成功', 0, $result);
2020-06-16 23:27:12 +08:00
}
2018-12-28 18:58:37 +08:00
2020-06-16 23:27:12 +08:00
/**
* 数据处理
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-15
* @desc description
* @param [array] $data [导航数据]
*/
public static function NavigationHandle($data)
{
if(!empty($data) && is_array($data))
2018-12-28 18:58:37 +08:00
{
2020-06-16 23:27:12 +08:00
$nav_type_list = lang('common_nav_type_list');
2018-12-28 18:58:37 +08:00
foreach($data as &$v)
{
2020-06-16 23:27:12 +08:00
// 数据类型
$v['data_type_text'] = isset($nav_type_list[$v['data_type']]) ? $nav_type_list[$v['data_type']]['name'] : '';
// 时间
$v['add_time'] = date('Y-m-d H:i:s', $v['add_time']);
$v['upd_time'] = empty($v['upd_time']) ? '' : date('Y-m-d H:i:s', $v['upd_time']);
2018-12-28 18:58:37 +08:00
}
}
return $data;
}
/**
* 获取一级导航列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
* @param [array] $params [输入参数]
*/
public static function LevelOneNav($params = [])
2018-12-28 18:58:37 +08:00
{
if(empty($params['nav_type']))
{
return [];
}
return Db::name('Navigation')->field('id,name')->where(['is_show'=>1, 'pid'=>0, 'nav_type'=>$params['nav_type']])->select();
}
/**
* 导航保存
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-07T21:58:19+0800
2020-06-16 23:27:12 +08:00
* @param [array] $params [输入参数]
2018-12-28 18:58:37 +08:00
*/
public static function NavSave($params = [])
2018-12-28 18:58:37 +08:00
{
if(empty($params['data_type']))
{
return DataReturn('操作类型有误', -1);
}
// 请求类型
$p = [
[
'checked_type' => 'length',
'key_name' => 'sort',
'checked_data' => '4',
'error_msg' => '顺序 0~255 之间的数值',
],
[
'checked_type' => 'in',
'key_name' => 'is_show',
'checked_data' => [0,1],
'error_msg' => '是否显示范围值有误',
],
[
'checked_type' => 'in',
'key_name' => 'is_new_window_open',
'checked_data' => [0,1],
'error_msg' => '是否新窗口打开范围值有误',
]
];
switch($params['data_type'])
{
// 自定义导航
case 'custom':
$p = [
[
'checked_type' => 'in',
'key_name' => 'nav_type',
'checked_data' => ['header', 'footer'],
'error_msg' => '数据类型有误',
],
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'fun',
'key_name' => 'url',
'checked_data' => 'CheckUrl',
'error_msg' => 'url格式有误',
],
];
break;
// 文章分类导航
case 'article':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '文章选择有误',
],
];
break;
// 自定义页面导航
case 'customview':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
'checked_data' => '2,16',
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '自定义页面选择有误',
],
];
break;
// 商品分类导航
case 'goods_category':
$p = [
[
'checked_type' => 'length',
'key_name' => 'name',
2019-01-09 14:35:40 +08:00
'checked_data' => '2,16',
2018-12-28 18:58:37 +08:00
'is_checked' => 1,
'error_msg' => '导航名称格式 2~16 个字符',
],
[
'checked_type' => 'empty',
'key_name' => 'value',
'error_msg' => '商品分类选择有误',
],
];
break;
// 没找到
default :
return DataReturn('操作类型有误', -1);
}
// 参数
$ret = ParamsChecked($params, $p);
if($ret !== true)
{
return DataReturn($ret, -1);
}
// 保存数据
return self::NacDataSave($params);
2018-12-28 18:58:37 +08:00
}
/**
* 导航数据保存
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-02-05T20:12:30+0800
2020-06-16 23:27:12 +08:00
* @param [array] $params [输入参数]
2018-12-28 18:58:37 +08:00
*/
public static function NacDataSave($params = [])
2018-12-28 18:58:37 +08:00
{
// 非自定义导航数据处理
if(empty($params['name']))
{
switch($params['data_type'])
{
// 文章分类导航
case 'article':
$temp_name = Db::name('Article')->where(['id'=>$params['value']])->value('title');
break;
// 自定义页面导航
case 'customview':
$temp_name = Db::name('CustomView')->where(['id'=>$params['value']])->value('title');
break;
// 商品分类导航
case 'goods_category':
$temp_name = Db::name('GoodsCategory')->where(['id'=>$params['value']])->value('name');
break;
}
// 只截取16个字符
2018-12-29 13:13:09 +08:00
$params['name'] = mb_substr($temp_name, 0, 16, config('shopxo.default_charset'));
2018-12-28 18:58:37 +08:00
}
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
// 数据
$data = [
'pid' => isset($params['pid']) ? intval($params['pid']) : 0,
'value' => isset($params['value']) ? intval($params['value']) : 0,
'name' => $params['name'],
'url' => isset($params['url']) ? $params['url'] : '',
'nav_type' => $params['nav_type'],
'data_type' => $params['data_type'],
'sort' => intval($params['sort']),
'is_show' => intval($params['is_show']),
'is_new_window_open' => intval($params['is_new_window_open']),
];
// id为空则表示是新增
if(empty($params['id']))
{
$data['add_time'] = time();
if(Db::name('Navigation')->insertGetId($data) > 0)
{
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
return DataReturn('新增成功', 0);
} else {
return DataReturn('新增失败', -100);
}
} else {
$data['upd_time'] = time();
if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update($data))
{
// 清除缓存
cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null);
return DataReturn('编辑成功', 0);
} else {
return DataReturn('编辑失败或数据未改变', -100);
}
}
}
/**
* 导航删除
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-18
* @desc description
* @param [array] $params [输入参数]
*/
public static function NavDelete($params = [])
2018-12-28 18:58:37 +08:00
{
2020-06-16 23:27:12 +08:00
// 参数是否有误
if(empty($params['ids']))
2018-12-28 18:58:37 +08:00
{
2020-06-16 23:27:12 +08:00
return DataReturn('操作id有误', -1);
}
// 是否数组
if(!is_array($params['ids']))
{
$params['ids'] = explode(',', $params['ids']);
2018-12-28 18:58:37 +08:00
}
// 启动事务
Db::startTrans();
// 删除操作
2020-06-16 23:27:12 +08:00
if(Db::name('Navigation')->where(['id'=>$params['ids']])->delete() !== false && Db::name('Navigation')->where(['pid'=>$params['ids']])->delete() !== false)
2018-12-28 18:58:37 +08:00
{
// 提交事务
Db::commit();
// 清除缓存
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_header_key'), null);
cache(config('shopxo.cache_common_home_nav_footer_key'), null);
2018-12-28 18:58:37 +08:00
return DataReturn('删除成功');
}
// 回滚事务
Db::rollback();
2020-06-16 23:27:12 +08:00
return DataReturn('删除失败', -100);
2018-12-28 18:58:37 +08:00
}
/**
* 状态更新
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-06T21:31:53+0800
* @param [array] $params [输入参数]
*/
public static function NavStatusUpdate($params = [])
2018-12-28 18:58:37 +08:00
{
// 请求参数
$p = [
[
'checked_type' => 'empty',
'key_name' => 'id',
'error_msg' => '操作id有误',
],
2020-06-16 23:27:12 +08:00
[
'checked_type' => 'empty',
'key_name' => 'field',
'error_msg' => '未指定操作字段',
],
2018-12-28 18:58:37 +08:00
[
'checked_type' => 'in',
'key_name' => 'state',
'checked_data' => [0,1],
'error_msg' => '状态有误',
],
];
$ret = ParamsChecked($params, $p);
if($ret !== true)
{
return DataReturn($ret, -1);
}
// 数据更新
2020-06-16 23:27:12 +08:00
if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update([$params['field']=>intval($params['state']), 'upd_time'=>time()]))
2018-12-28 18:58:37 +08:00
{
// 清除缓存
2018-12-29 13:13:09 +08:00
cache(config('shopxo.cache_common_home_nav_header_key'), null);
cache(config('shopxo.cache_common_home_nav_footer_key'), null);
2018-12-28 18:58:37 +08:00
return DataReturn('编辑成功');
}
2020-06-16 23:27:12 +08:00
return DataReturn('编辑失败', -100);
2018-12-28 18:58:37 +08:00
}
2019-03-15 17:46:35 +08:00
/**
* 获取前端顶部右侧导航
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
2020-01-30 13:42:59 +08:00
* @param [array] $params [输入信息]
2019-03-15 17:46:35 +08:00
*/
public static function HomeHavTopRight($params = [])
{
$common_cart_total = 0;
$common_message_total = -1;
if(!empty($params['user']))
{
// 购物车商品总数
$common_cart_total = BuyService::UserCartTotal(['user'=>$params['user']]);
// 未读消息总数
$message_params = ['user'=>$params['user'], 'is_more'=>1, 'is_read'=>0, 'user_type'=>'user'];
$common_message_total = MessageService::UserMessageTotal($message_params);
2020-01-06 18:53:24 +08:00
$common_message_total = ($common_message_total <= 0) ? -1 : $common_message_total;
2019-03-15 17:46:35 +08:00
}
// 列表
$data = [
[
'name' => '个人中心',
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-user',
'url' => MyUrl('index/user/index'),
'items' => [],
],
[
2019-04-28 18:31:39 +08:00
'name' => '我的商城',
2019-03-15 17:46:35 +08:00
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-cube',
'url' => '',
'items' => [
[
'name' => '我的订单',
'url' => MyUrl('index/order/index'),
],
],
],
[
'name' => '我的收藏',
'is_login' => 1,
'badge' => null,
'icon' => 'am-icon-heart',
'url' => '',
'items' => [
[
'name' => '商品收藏',
2020-06-30 19:31:09 +08:00
'url' => MyUrl('index/usergoodsfavor/index'),
2019-03-15 17:46:35 +08:00
],
],
],
[
'name' => '购物车',
'is_login' => 1,
'badge' => $common_cart_total,
'icon' => 'am-icon-shopping-cart',
'url' => MyUrl('index/cart/index'),
'items' => [],
],
[
'name' => '消息',
'is_login' => 1,
'badge' => $common_message_total,
'icon' => 'am-icon-bell',
'url' => MyUrl('index/message/index'),
'items' => [],
],
];
// 顶部小导航右侧钩子
$hook_name = 'plugins_service_header_navigation_top_right_handle';
2019-12-02 20:58:24 +08:00
Hook::listen($hook_name, [
2019-03-15 17:46:35 +08:00
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户中心资料修改展示字段
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
2020-01-30 13:42:59 +08:00
* @param [array] $params [输入信息]
2019-03-15 17:46:35 +08:00
*/
public static function UsersPersonalShowFieldList($params = [])
{
2019-05-26 01:32:21 +08:00
// is_ext 扩展数据 1, key不存在用户字段中可使用该扩展
// name 显示名称
// value 扩展自定义值
// tips html提示操作内容
2019-03-15 17:46:35 +08:00
$data = [
'avatar' => [
'name' => '头像',
'tips' => '<a href="javascript:;" data-am-modal="{target:\'#user-avatar-popup\'}">修改</a>'
],
'nickname' => [
'name' => '昵称'
],
'gender_text' => [
'name' => '性别'
],
'birthday_text' => [
'name' => '生日'
],
'mobile_security' => [
'name' => '手机号码',
'tips' => '<a href="'.MyUrl('index/safety/mobileinfo').'">修改</a>'
],
'email_security' => [
'name' => '电子邮箱',
'tips' => '<a href="'.MyUrl('index/safety/emailinfo').'">修改</a>'
],
'add_time_text' => [
'name' => '注册时间'
],
'upd_time_text' => [
2019-05-26 01:32:21 +08:00
'name' => '更新时间'
2019-03-15 17:46:35 +08:00
],
];
// 用户中心资料修改展示字段钩子
$hook_name = 'plugins_service_users_personal_show_field_list_handle';
2019-12-02 20:58:24 +08:00
Hook::listen($hook_name, [
2019-03-15 17:46:35 +08:00
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户安全项列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
2020-01-30 13:42:59 +08:00
* @param [array] $params [输入信息]
2019-03-15 17:46:35 +08:00
*/
public static function UsersSafetyPanelList($params = [])
{
$data = [
[
'title' => '登录密码',
'msg' => '互联网存在被盗风险,建议您定期更改密码以保护安全。',
'url' => MyUrl('index/safety/loginpwdinfo'),
'type' => 'loginpwd',
],
[
'title' => '手机号码',
'no_msg' => '您还没有绑定手机号码',
'ok_msg' => '已绑定手机 #accounts#',
'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒通知。',
'url' => MyUrl('index/safety/mobileinfo'),
'type' => 'mobile',
],
[
'title' => '电子邮箱',
'no_msg' => '您还没有绑定电子邮箱',
'ok_msg' => '已绑定电子邮箱 #accounts#',
'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒邮件。',
'url' => MyUrl('index/safety/emailinfo'),
'type' => 'email',
],
];
// 用户安全项列表钩子
$hook_name = 'plugins_service_users_safety_panel_list_handle';
2019-12-02 20:58:24 +08:00
Hook::listen($hook_name, [
2019-03-15 17:46:35 +08:00
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
/**
* 用户中心左侧菜单
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
2020-01-30 13:42:59 +08:00
* @param [array] $params [输入信息]
2019-03-15 17:46:35 +08:00
*/
public static function UsersCenterLeftList($params = [])
{
2019-04-11 18:27:50 +08:00
// name 名称
// url 页面地址
// is_show 是否显示0否, 1是
2019-12-29 18:27:24 +08:00
// contains 包含的子页面(包括自身) 如用户中心index 组, user 控制器, index 方法 [ indexuserindex ]
2019-04-11 18:27:50 +08:00
// icon icon类
// item 二级数据
2019-06-12 22:07:26 +08:00
// is_system 是否系统内置菜单0否, 1是扩展数据可空或0
2019-04-11 18:27:50 +08:00
// 菜单列表
2019-03-15 17:46:35 +08:00
$data = [
2019-04-28 18:31:39 +08:00
'center' => [
2019-03-15 17:46:35 +08:00
'name' => '个人中心',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/user/index'),
2019-03-15 17:46:35 +08:00
'is_show' => 1,
2019-12-29 18:27:24 +08:00
'contains' => ['indexuserindex'],
2019-03-15 17:46:35 +08:00
'icon' => 'am-icon-home',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
2019-04-28 18:31:39 +08:00
'business' => [
'name' => '业务管理',
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-cube',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
'item' => [
[
'name' => '订单管理',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/order/index'),
2019-03-15 17:46:35 +08:00
'is_show' => 1,
2019-12-29 18:27:24 +08:00
'contains' => ['indexorderindex', 'indexorderdetail', 'indexordercomments'],
2019-03-15 17:46:35 +08:00
'icon' => 'am-icon-th-list',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
2019-05-24 13:57:10 +08:00
[
'name' => '订单售后',
'url' => MyUrl('index/orderaftersale/index'),
'is_show' => 1,
2020-06-30 23:32:16 +08:00
'contains' => ['indexorderaftersaleindex', 'indexorderaftersaledetail'],
2019-05-24 13:57:10 +08:00
'icon' => 'am-icon-puzzle-piece',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-05-24 13:57:10 +08:00
],
2019-03-15 17:46:35 +08:00
[
'name' => '我的收藏',
2020-06-30 19:31:09 +08:00
'url' => MyUrl('index/usergoodsfavor/index'),
'contains' => ['indexusergoodsfavorindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-heart-o',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
]
],
2019-06-16 18:02:45 +08:00
'property' => [
'name' => '财产中心',
'is_show' => 1,
'icon' => 'am-icon-trophy',
'is_system' => 1,
'item' => [
[
'name' => '我的积分',
'url' => MyUrl('index/userintegral/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexuserintegralindex'],
2019-06-16 18:02:45 +08:00
'is_show' => 1,
'icon' => 'am-icon-fire',
'is_system' => 1,
],
]
],
2019-04-28 18:31:39 +08:00
'base' => [
2019-03-15 17:46:35 +08:00
'name' => '资料管理',
'is_show' => 1,
'icon' => 'am-icon-user',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
'item' => [
[
'name' => '个人资料',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/personal/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexpersonalindex', 'indexpersonalsaveinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-gear',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的地址',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/useraddress/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexuseraddressindex', 'indexuseraddresssaveinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-street-view',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '安全设置',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/safety/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexsafetyindex', 'indexsafetyloginpwdinfo', 'indexsafetymobileinfo', 'indexsafetynewmobileinfo', 'indexsafetyemailinfo', 'indexsafetynewemailinfo'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-user-secret',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的消息',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/message/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexmessageindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-bell-o',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '我的足迹',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/usergoodsbrowse/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexusergoodsbrowseindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-lastfm',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
[
'name' => '问答/留言',
2019-04-11 18:27:50 +08:00
'url' => MyUrl('index/answer/index'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexanswerindex'],
2019-03-15 17:46:35 +08:00
'is_show' => 1,
'icon' => 'am-icon-question',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-03-15 17:46:35 +08:00
],
]
],
2019-04-28 18:31:39 +08:00
'logout' => [
2019-04-11 18:27:50 +08:00
'name' => '安全退出',
'url' => MyUrl('index/user/logout'),
2019-12-29 18:27:24 +08:00
'contains' => ['indexuserlogout'],
2019-04-11 18:27:50 +08:00
'is_show' => 1,
'icon' => 'am-icon-power-off',
2019-06-12 22:07:26 +08:00
'is_system' => 1,
2019-04-11 18:27:50 +08:00
],
2019-03-15 17:46:35 +08:00
];
// 用户中心左侧菜单钩子
$hook_name = 'plugins_service_users_center_left_menu_handle';
2019-12-02 20:58:24 +08:00
Hook::listen($hook_name, [
2019-03-15 17:46:35 +08:00
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
2019-08-01 16:12:43 +08:00
/**
* 获取网站底部导航
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
2020-01-30 13:42:59 +08:00
* @param [array] $params [输入信息]
2019-08-01 16:12:43 +08:00
*/
public static function BottomNavigation($params = [])
{
$common_cart_total = 0;
if(!empty($params['user']))
{
// 购物车商品总数
$common_cart_total = BuyService::UserCartTotal(['user'=>$params['user']]);
}
// 列表
$data = [
[
'name' => '首页',
'is_login' => 0,
'badge' => null,
'icon' => 'nav-icon-home',
'only_tag' => 'indexindex',
'url' => __MY_URL__,
],
[
'name' => '分类',
'is_login' => 0,
'badge' => null,
'icon' => 'nav-icon-category',
'only_tag' => 'categoryindex',
'url' => MyUrl('index/category/index'),
],
[
'name' => '购物车',
'is_login' => 1,
'badge' => $common_cart_total,
'icon' => 'nav-icon-cart',
'only_tag' => 'cartindex',
'url' => MyUrl('index/cart/index'),
],
[
'name' => '我的',
'is_login' => 1,
'badge' => null,
'icon' => 'nav-icon-user',
'only_tag' => 'userindex',
'url' => MyUrl('index/user/index'),
],
];
// 网站底部导航
$hook_name = 'plugins_service_bottom_navigation_handle';
2019-12-02 20:58:24 +08:00
Hook::listen($hook_name, [
2019-08-01 16:12:43 +08:00
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
2020-01-30 13:42:59 +08:00
/**
* 用户中心基础信息中 mini 导航
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-03-15
* @desc description
* @param [array] $params [输入信息]
*/
public static function UserCenterMiniNavigation($params = [])
{
2020-07-01 22:46:52 +08:00
$user_order_count = 0;
$user_goods_favor_count = 0;
$user_goods_browse_count = 0;
$user_integral = 0;
if(!empty($params['user']))
2020-01-30 13:42:59 +08:00
{
// 订单总数
$where = ['user_id'=>$params['user']['id'], 'is_delete_time'=>0, 'user_is_delete_time'=>0];
$user_order_count = OrderService::OrderTotal($where);
2020-07-01 22:46:52 +08:00
// 商品收藏/我的足迹总数
2020-01-30 13:42:59 +08:00
$where = ['user_id'=>$params['user']['id']];
2020-07-01 22:46:52 +08:00
$user_goods_favor_count = GoodsFavorService::GoodsFavorTotal($where);
2020-06-30 19:31:09 +08:00
$user_goods_browse_count = GoodsBrowseService::GoodsBrowseTotal($where);
2020-01-30 13:42:59 +08:00
// 用户积分
2020-07-01 22:46:52 +08:00
$user_integral_data = IntegralService::UserIntegral($params['user']['id']);
$user_integral = (isset($user_integral_data['data']) && isset($user_integral_data['data']['integral'])) ? $user_integral_data['data']['integral'] : 0;
2020-01-30 13:42:59 +08:00
}
// 列表
$data = [
[
'name' => '订单总数',
'value' => $user_order_count,
'url' => MyUrl('index/order/index'),
],
[
'name' => '商品收藏',
'value' => $user_goods_favor_count,
2020-08-19 23:38:47 +08:00
'url' => MyUrl('index/usergoodsfavor/index'),
2020-01-30 13:42:59 +08:00
],
[
'name' => '我的足迹',
'value' => $user_goods_browse_count,
'url' => MyUrl('index/usergoodsbrowse/index'),
],
[
'name' => '我的积分',
'value' => $user_integral,
'url' => MyUrl('index/userintegral/index'),
],
];
// 用户中心基础信息中mini导航
$hook_name = 'plugins_service_user_center_mini_navigation_handle';
Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
'data' => &$data,
]);
return $data;
}
2018-12-28 18:58:37 +08:00
}
?>