Config.php 802 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\memberregister\api\controller;
  11. use app\api\controller\BaseApi;
  12. use addon\memberregister\model\Register;
  13. /**
  14. * 会员注册奖励
  15. */
  16. class Config extends BaseApi
  17. {
  18. /**
  19. * 计算信息
  20. */
  21. public function Config()
  22. {
  23. //注册后奖励
  24. $register_model = new Register();
  25. $info = $register_model->getConfig($this->site_id);
  26. return $this->response($info);
  27. }
  28. }