截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ShopCoupon.php 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\admin\controller\coupon;
  3. use app\common\basics\AdminBase;
  4. use app\admin\logic\coupon\ShopCouponLogic;
  5. use app\common\server\JsonServer;
  6. class ShopCoupon extends AdminBase
  7. {
  8. public function lists(){
  9. if($this->request->isAjax()){
  10. $get = $this->request->get();
  11. $data = ShopCouponLogic::lists($get);
  12. return JsonServer::success('', $data);
  13. }
  14. return view();
  15. }
  16. public function detail(){
  17. $id = $this->request->get('id');
  18. $detail = ShopCouponLogic::getCoupon($id,true);
  19. return view('', [
  20. 'detail' => json_encode($detail,JSON_UNESCAPED_UNICODE)
  21. ]);
  22. }
  23. public function record()
  24. {
  25. if($this->request->isAjax()){
  26. $get = $this->request->get();
  27. $data = ShopCouponLogic::record($get);
  28. return JsonServer::success('', $data);
  29. }
  30. $id = $this->request->get('id');
  31. return view('', [
  32. 'id' => $id
  33. ]);
  34. }
  35. }