截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MarketingConfig.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace app\admin\controller\setting;
  3. use app\admin\logic\setting\MarketingConfigLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\enum\OrderEnum;
  6. use app\common\server\ConfigServer;
  7. use app\common\server\JsonServer;
  8. /**
  9. * 营销设置
  10. * Class MarketingConfig
  11. * @package app\admin\controller\setting
  12. */
  13. class MarketingConfig extends AdminBase
  14. {
  15. /**
  16. * @notes 消费奖励
  17. * @return \think\response\Json|\think\response\View
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\DbException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. * @author ljj
  22. * @date 2022/2/18 4:10 下午
  23. */
  24. public function orderAward()
  25. {
  26. if($this->request->isAjax()) {
  27. $post = $this->request->post();
  28. $result = MarketingConfigLogic::setOrderAward($post);
  29. if ($result !== true) {
  30. return JsonServer::error($result);
  31. }
  32. return JsonServer::success('设置成功');
  33. }
  34. return view('', [
  35. 'award_event_lists' => OrderEnum::getOrderAward(true),
  36. 'open_award' => ConfigServer::get('order_award','open_award',0),
  37. 'award_event' => ConfigServer::get('order_award','award_event',0),
  38. 'award_ratio' => ConfigServer::get('order_award','award_ratio'),
  39. ]);
  40. }
  41. }