Pointshop.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace app\api\controller;
  3. use think\facade\Lang;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 控制器
  15. */
  16. class Pointshop extends MobileMall
  17. {
  18. public function initialize()
  19. {
  20. parent::initialize(); // TODO: Change the autogenerated stub
  21. Lang::load(base_path().'home/lang/'.config('lang.default_lang').'/pointprod.lang.php');
  22. Lang::load(base_path().'home/lang/'.config('lang.default_lang').'/voucher.lang.php');
  23. //判断系统是否开启积分兑换功能
  24. if (config('ds_config.points_isuse') != 1 || config('ds_config.pointprod_isuse') != 1) {
  25. ds_json_encode(10001, lang('pointshop_unavailable'));
  26. }
  27. }
  28. public function index(){
  29. $result=array();
  30. //开启代金券功能后查询推荐的热门代金券列表
  31. if (config('ds_config.voucher_allow') == 1){
  32. $recommend_voucher = model('voucher')->getRecommendTemplate(6);
  33. $result['recommend_voucher']=$recommend_voucher;
  34. //平台代金券
  35. $where = array();
  36. $where[]=array('mallvouchertemplate_startdate','<',TIMESTAMP);
  37. $where[]=array('mallvouchertemplate_enddate','>',TIMESTAMP);
  38. $mallvoucherlist = model('mallvouchertemplate')->getMallvouchertemplateList($where, 6);
  39. $result['mall_voucher']=$mallvoucherlist;
  40. }
  41. //开启积分兑换功能后查询推荐的热门兑换商品列表
  42. if (config('ds_config.pointprod_isuse') == 1){
  43. //热门积分兑换商品
  44. $recommend_pointsprod = model('pointprod')->getRecommendPointProd(10);
  45. $result['recommend_pointsprod']=$recommend_pointsprod;
  46. }
  47. ds_json_encode(10000, '', $result);
  48. }
  49. }