截流自动化的商城平台
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.

ShopApply.php 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\ShopApplyLogic;
  4. use app\api\validate\ShopApplyValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. use app\common\model\Treaty;
  8. use app\common\enum\TreatyEnum;
  9. class ShopApply extends Api
  10. {
  11. public $like_not_need_login = ['getTreaty'];
  12. /**
  13. * @Notes: 商家申请入驻
  14. * @Author: 张无忌
  15. */
  16. public function apply()
  17. {
  18. (new ShopApplyValidate())->goCheck('apply');
  19. $post = $this->request->post();
  20. $res = ShopApplyLogic::apply($post, $this->user_id);
  21. if ($res === false) {
  22. $error = ShopApplyLogic::getError() ?: '申请失败';
  23. return JsonServer::error($error);
  24. }
  25. return JsonServer::success('申请成功', $res);
  26. }
  27. /**
  28. * @Notes: 申请记录列表
  29. * @Author: 张无忌
  30. */
  31. public function record()
  32. {
  33. $get = $this->request->get();
  34. $get['page_no'] = $this->page_no;
  35. $get['page_size'] = $this->page_size;
  36. $lists = ShopApplyLogic::record($get, $this->user_id);
  37. return JsonServer::success('获取成功', $lists);
  38. }
  39. /**
  40. * @Notes: 申请详细
  41. * @Author: 张无忌
  42. */
  43. public function detail()
  44. {
  45. $id = $this->request->get('id');
  46. $detail = ShopApplyLogic::detail($id);
  47. return JsonServer::success('获取成功', $detail);
  48. }
  49. /**
  50. * 入驻协议
  51. */
  52. public function getTreaty()
  53. {
  54. $content = Treaty::where(['type'=>TreatyEnum::SHOP_ENTER_TYPE, 'name'=>'入驻协议'])->value('content');
  55. if(!$content) {
  56. $content = [];
  57. }
  58. return JsonServer::success('', [
  59. 'content' => $content
  60. ]);
  61. }
  62. }