截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ShopApplyLogic.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\NoticeEnum;
  5. use app\common\model\shop\ShopApply;
  6. use app\common\model\shop\ShopCategory;
  7. use app\common\server\ConfigServer;
  8. use app\common\server\UrlServer;
  9. use think\Exception;
  10. class ShopApplyLogic extends Logic
  11. {
  12. /**
  13. * @Notes: 商家申请入驻
  14. * @Author: 张无忌
  15. * @param $post
  16. * @param $user_id
  17. * @return bool|array
  18. */
  19. public static function apply($post, $user_id)
  20. {
  21. try {
  22. // 验证商家名称及账号是否已存在
  23. $applyInfo = ShopApply::where([
  24. ['del', '=', 0],
  25. ['audit_status', '<>', 3],
  26. ['name', '=', $post['name']],
  27. ])->select()->toArray();
  28. if($applyInfo) {
  29. throw new Exception('商家名称已存在');
  30. }
  31. $applyInfo = ShopApply::where([
  32. ['del', '=', 0],
  33. ['audit_status', '<>', 3],
  34. ['account', '=', $post['account']],
  35. ])->select()->toArray();
  36. if($applyInfo) {
  37. throw new Exception('商家账号已存在');
  38. }
  39. $apply = ShopApply::create([
  40. 'user_id' => $user_id,
  41. 'cid' => $post['cid'],
  42. 'name' => $post['name'],
  43. 'nickname' => $post['nickname'],
  44. 'mobile' => $post['mobile'],
  45. 'account' => $post['account'],
  46. 'password' => $post['password'],
  47. 'license' => implode(',', $post['license']),
  48. 'del' => 0,
  49. 'audit_status' => 1,
  50. 'audit_explain' => '',
  51. 'apply_time' => time()
  52. ]);
  53. $platform_contacts = ConfigServer::get('website_platform','platform_mobile');
  54. if (!empty($platform_contacts)) {
  55. //通知平台
  56. event('Notice', [
  57. 'scene' => NoticeEnum::SHOP_APPLY_NOTICE_PLATFORM,
  58. 'mobile' => $platform_contacts,
  59. 'params' => [
  60. 'user_id' => $user_id,
  61. 'shop_name' => $post['name'],
  62. ]
  63. ]);
  64. }
  65. return ['id'=>$apply->id];
  66. } catch (\Exception $e) {
  67. static::$error = $e->getMessage();
  68. return false;
  69. }
  70. }
  71. /**
  72. * @Notes: 申请记录列表
  73. * @Author: 张无忌
  74. * @param $get
  75. * @param $user_id
  76. * @return array
  77. */
  78. public static function record($get, $user_id)
  79. {
  80. try {
  81. $model = new ShopApply();
  82. $lists = $model->field('id,name,apply_time,audit_status,audit_status as audit_status_desc')
  83. ->order('id', 'desc')
  84. ->where([
  85. ['user_id', '=', $user_id],
  86. ['del', '=', 0]
  87. ])
  88. ->page($get['page_no'], $get['page_size'])
  89. ->select()
  90. ->toArray();
  91. $count = $model->field('id,name,apply_time,audit_status as audit_status_desc')
  92. ->where([
  93. ['user_id', '=', $user_id],
  94. ['del', '=', 0]
  95. ])
  96. ->count();
  97. return [
  98. 'count' => $count,
  99. 'lists' => $lists,
  100. 'page_no' => $get['page_no'],
  101. 'page_size' => $get['page_size'],
  102. 'more' => is_more($count, $get['page_no'], $get['page_size'])
  103. ];
  104. } catch (\Exception $e) {
  105. return ['error'=>$e->getMessage()];
  106. }
  107. }
  108. /**
  109. * @Notes: 申请详细
  110. * @Author: 张无忌
  111. * @param $id
  112. * @return array
  113. */
  114. public static function detail($id)
  115. {
  116. $model = new ShopApply();
  117. $info = $model->field(true)->findOrEmpty($id)->toArray();
  118. if(!empty($info['license'])) {
  119. foreach($info['license'] as $key => $item) {
  120. $info['license'][$key] = UrlServer::getFileUrl($item);
  121. }
  122. }
  123. $shop_category = ShopCategory::where('del', 0)->column('id,name', 'id');
  124. $info['admin_address'] = request()->domain().'/shop';
  125. $info['cid_desc'] = $shop_category[$info['cid']]['name'];
  126. return $info;
  127. }
  128. }