Member.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?php
  2. namespace app\home\controller;
  3. use think\facade\View;
  4. use think\facade\Lang;
  5. /**
  6. * ============================================================================
  7. *
  8. * ============================================================================
  9. *
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 控制器
  14. */
  15. class Member extends BaseMember {
  16. public function initialize() {
  17. parent::initialize();
  18. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/member.lang.php');
  19. }
  20. public function index() {
  21. //获取用户账号信息
  22. $member_info = $this->member_info;
  23. $member_info['security_level'] = model('member')->getMemberSecurityLevel($member_info);
  24. //代金券数量
  25. $member_info['voucher_count'] = model('voucher')->getCurrentAvailableVoucherCount(session('member_id'));
  26. View::assign('home_member_info', $member_info);
  27. //获取订单信息
  28. $order_list=array();
  29. $order_model = model('order');
  30. $refundreturn_model = model('refundreturn');
  31. $order_list['order_nopay_count'] = $order_model->getOrderCountByID('buyer', session('member_id'), 'NewCount');
  32. $order_list['order_noreceipt_count'] = $order_model->getOrderCountByID('buyer', session('member_id'), 'SendCount');
  33. $order_list['order_noeval_count'] = $order_model->getOrderCountByID('buyer', session('member_id'), 'EvalCount');
  34. $order_list['order_noship_count'] = $order_model->getOrderCountByID('buyer', session('member_id'), 'PayCount');
  35. $order_list['order_refund_count'] = $refundreturn_model->getRefundreturnCount(array(array('buyer_id','=',session('member_id')),array('refund_state','in',[1,2])));
  36. View::assign('home_order_info', $order_list);
  37. /* 设置买家当前菜单 */
  38. $this->setMemberCurMenu('selleralbum');
  39. /* 设置买家当前栏目 */
  40. $this->setMemberCurItem('my_album');
  41. return View::fetch($this->template_dir . 'index');
  42. }
  43. public function ajax_load_order_info() {
  44. //取出购物车信息
  45. $cart_model = model('cart');
  46. $cart_list = $cart_model->getCartList('db', array('buyer_id' => session('member_id')), 12);
  47. View::assign('cart_list', $cart_list);
  48. return View::fetch($this->template_dir . 'order_info');
  49. }
  50. public function ajax_load_point_info(){
  51. //开启代金券功能后查询推荐的热门代金券列表
  52. if (config('ds_config.voucher_allow') == 1){
  53. $recommend_voucher = model('voucher')->getRecommendTemplate(2);
  54. View::assign('recommend_voucher',$recommend_voucher);
  55. }
  56. //开启积分兑换功能后查询推荐的热门兑换商品列表
  57. if (config('ds_config.pointprod_isuse') == 1){
  58. //热门积分兑换商品
  59. $recommend_pointsprod = model('pointprod')->getRecommendPointProd(2);
  60. View::assign('recommend_pointsprod',$recommend_pointsprod);
  61. }
  62. return View::fetch($this->template_dir . 'point_info');
  63. }
  64. public function ajax_load_goods_info() {
  65. //商品收藏
  66. $favorites_model = model('favorites');
  67. $favorites_list = $favorites_model->getGoodsFavoritesList(array(array('member_id' ,'=', session('member_id'))), '*', 7);
  68. if (!empty($favorites_list) && is_array($favorites_list)) {
  69. $favorites_id = array(); //收藏的商品编号
  70. foreach ($favorites_list as $key => $favorites) {
  71. $fav_id = $favorites['fav_id'];
  72. $favorites_id[] = $favorites['fav_id'];
  73. $favorites_key[$fav_id] = $key;
  74. }
  75. $goods_model = model('goods');
  76. $field = 'goods.goods_id,goods.goods_name,goods.store_id,goods.goods_image,goods.goods_price,goods.evaluation_count,goods.goods_salenum,goods.goods_collect,store.store_name,store.member_id,store.member_name,store.store_qq,store.store_ww';
  77. $goods_list = $goods_model->getGoodsStoreList(array(array('goods_id','in', $favorites_id)), $field);
  78. $store_array = array(); //店铺编号
  79. if (!empty($goods_list) && is_array($goods_list)) {
  80. $store_goods_list = array(); //店铺为分组的商品
  81. foreach ($goods_list as $key => $fav) {
  82. $fav_id = $fav['goods_id'];
  83. $fav['goods_member_id'] = $fav['member_id'];
  84. $key = $favorites_key[$fav_id];
  85. $favorites_list[$key]['goods'] = $fav;
  86. }
  87. }
  88. }
  89. View::assign('favorites_list', $favorites_list);
  90. //店铺收藏
  91. $favorites_list = $favorites_model->getStoreFavoritesList(array(array('member_id' ,'=', session('member_id'))), '*', 6);
  92. if (!empty($favorites_list) && is_array($favorites_list)) {
  93. $favorites_id = array(); //收藏的店铺编号
  94. foreach ($favorites_list as $key => $favorites) {
  95. $fav_id = $favorites['fav_id'];
  96. $favorites_id[] = $favorites['fav_id'];
  97. $favorites_key[$fav_id] = $key;
  98. }
  99. $store_model = model('store');
  100. $store_list = $store_model->getStoreList(array(array('store_id','in', $favorites_id)));
  101. if (!empty($store_list) && is_array($store_list)) {
  102. foreach ($store_list as $key => $fav) {
  103. $fav_id = $fav['store_id'];
  104. $key = $favorites_key[$fav_id];
  105. $favorites_list[$key]['store'] = $fav;
  106. }
  107. }
  108. }
  109. View::assign('favorites_store_list', $favorites_list);
  110. $goods_count_new = array();
  111. if (!empty($favorites_id)) {
  112. foreach ($favorites_id as $v) {
  113. $count = model('goods')->getGoodsCommonOnlineCount(array(array('store_id' ,'=', $v)));
  114. $goods_count_new[$v] = $count;
  115. }
  116. }
  117. View::assign('goods_count', $goods_count_new);
  118. return View::fetch($this->template_dir . 'goods_info');
  119. }
  120. public function ajax_load_sns_info() {
  121. //我的足迹
  122. $goods_list = model('goodsbrowse')->getViewedGoodsList(session('member_id'), 20);
  123. $viewed_goods = array();
  124. if (is_array($goods_list) && !empty($goods_list)) {
  125. foreach ($goods_list as $key => $val) {
  126. $goods_id = $val['goods_id'];
  127. $val['url'] = (string)url('Goods/index',['goods_id'=>$goods_id]);
  128. $val['goods_image'] = goods_thumb($val, 240);
  129. $viewed_goods[$goods_id] = $val;
  130. }
  131. }
  132. View::assign('viewed_goods', $viewed_goods);
  133. return View::fetch($this->template_dir . 'sns_info');
  134. }
  135. }