123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\home\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 控制器
- */
- class Pointshop extends BasePointShop
- {
- public function initialize()
- {
- parent::initialize(); // TODO: Change the autogenerated stub
- Lang::load(base_path().'home/lang/'.config('lang.default_lang').'/pointprod.lang.php');
- Lang::load(base_path().'home/lang/'.config('lang.default_lang').'/voucher.lang.php');
- }
- public function index(){
- //查询会员及其附属信息
- parent::pointshopMInfo();
- //开启代金券功能后查询推荐的热门店铺代金券列表和平台代金券
- if (config('ds_config.voucher_allow') == 1){
- //热门店铺代金券
- $recommend_voucher = model('voucher')->getRecommendTemplate(6);
- View::assign('recommend_voucher',$recommend_voucher);
-
- //平台代金券
- $where = array();
- $where[]=array('mallvouchertemplate_startdate','<',TIMESTAMP);
- $where[]=array('mallvouchertemplate_enddate','>',TIMESTAMP);
- $mallvoucherlist = model('mallvouchertemplate')->getMallvouchertemplateList($where, 6);
- View::assign('mallvoucherlist',$mallvoucherlist);
-
- }
- //开启积分兑换功能后查询推荐的热门兑换商品列表
- if (config('ds_config.pointprod_isuse') == 1){
- //热门积分兑换商品
- $recommend_pointsprod = model('pointprod')->getRecommendPointProd(10);
- View::assign('recommend_pointsprod',$recommend_pointsprod);
- }
- //SEO
- $this->_assign_seo(model('seo')->type('point')->show());
- //分类导航
- $nav_link = array(
- 0=>array('title'=>lang('homepage'),'link'=>HOME_SITE_URL),
- 1=>array('title'=>lang('ds_pointprod'))
- );
- View::assign('nav_link_list', $nav_link);
- return View::fetch($this->template_dir.'pointprod');
- }
- }
|