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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\controller;
  20. use app\common\basics\ShopApi;
  21. use app\common\server\JsonServer;
  22. use app\shop\validate\BankValidate;
  23. use app\shopapi\{
  24. logic\ShopLogic,
  25. validate\ShopDataSetValidate,
  26. validate\ShopWithdrawValidate,
  27. validate\AdminPasswordValidate
  28. };
  29. /**
  30. * 商家控制器
  31. * Class Shop
  32. * @package app\shopapi\controller
  33. */
  34. class Shop extends ShopApi{
  35. /**
  36. * @notes 获取商家可提现余额
  37. * @return \think\response\Json
  38. * @author cjhao
  39. * @date 2021/11/10 16:16
  40. */
  41. public function getShopInfo(){
  42. $shop = (new ShopLogic)->getShopInfo($this->shop_id);
  43. return JsonServer::success('', $shop);
  44. }
  45. /**
  46. * @notes 获取提现信息
  47. * @return \think\response\Json
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @author cjhao
  52. * @date 2021/11/10 16:30
  53. */
  54. public function getWithdrawInfo(){
  55. $result = (new ShopLogic)->getWithdrawInfo($this->shop_id);
  56. return JsonServer::success('', $result);
  57. }
  58. /**
  59. * @notes 提现操作
  60. * @return \think\response\Json
  61. * @author cjhao
  62. * @date 2021/11/10 17:03
  63. */
  64. public function withdraw(){
  65. $post = $this->request->post();
  66. $post['shop_id'] = $this->shop_id;
  67. (new ShopWithdrawValidate())->goCheck('',$post);
  68. $result = (new ShopLogic)->withdraw($post);
  69. if(true === $result){
  70. return JsonServer::success('提现成功');
  71. }
  72. return JsonServer::error($result );
  73. }
  74. /**
  75. * @notes 提现记录
  76. * @return \think\response\Json
  77. * @throws \think\db\exception\DbException
  78. * @author cjhao
  79. * @date 2021/11/10 17:11
  80. */
  81. public function withdrawLog(){
  82. $list = (new ShopLogic)->withdrawLog($this->shop_id,$this->page_no,$this->page_size);
  83. return JsonServer::success('', $list);
  84. }
  85. /**
  86. * @notes 添加账户
  87. * @return \think\response\Json
  88. * @throws \think\db\exception\DbException
  89. * @author cjhao
  90. * @date 2021/11/10 18:26
  91. */
  92. public function addBank(){
  93. (new BankValidate())->goCheck('add');
  94. $post = $this->request->post();
  95. $post['shop_id'] = $this->shop_id;
  96. (new ShopLogic)->addBank($post);
  97. return JsonServer::success('添加成功');
  98. }
  99. /**
  100. * @notes 获取银行卡
  101. * @return \think\response\Json
  102. * @author cjhao
  103. * @date 2021/11/11 15:47
  104. */
  105. public function getBank(){
  106. (new BankValidate())->goCheck('id');
  107. $id= $this->request->get('id');
  108. $data= (new ShopLogic)->getBank($id,$this->shop_id);
  109. return JsonServer::success('',$data);
  110. }
  111. /**
  112. * @notes 编辑银行卡
  113. * @return \think\response\Json
  114. * @author cjhao
  115. * @date 2021/11/10 18:40
  116. */
  117. public function editBank(){
  118. (new BankValidate())->goCheck('edit');
  119. $post = $this->request->post();
  120. $post['shop_id'] = $this->shop_id;
  121. (new ShopLogic)->editBank($post);
  122. return JsonServer::success('编辑成功');
  123. }
  124. /**
  125. * @notes 删除银行卡
  126. * @return \think\response\Json
  127. * @author cjhao
  128. * @date 2021/11/10 18:42
  129. */
  130. public function delBank(){
  131. (new BankValidate())->goCheck('id');
  132. $id = $this->request->post('id');
  133. (new ShopLogic)->delBank($id,$this->shop_id);
  134. return JsonServer::success('删除成功');
  135. }
  136. /**
  137. * @notes 设置商家信息
  138. * @return \think\response\Json
  139. * @author cjhao
  140. * @date 2021/11/11 10:40
  141. */
  142. public function shopSet(){
  143. $post = $this->request->post();
  144. (new ShopDataSetValidate())->goCheck('',['dataset'=>$post]);
  145. (new ShopLogic)->shopSet($post,$this->shop_id);
  146. return JsonServer::success('设置成功');
  147. }
  148. /**
  149. * @notes 修改密码接口
  150. * @return \think\response\Json
  151. * @author cjhao
  152. * @date 2021/11/11 16:11
  153. */
  154. public function changePwd(){
  155. $post = $this->request->post();
  156. $post['admin_id'] = $this->admin_id;
  157. (new AdminPasswordValidate())->goCheck('', $post);
  158. $res = (new ShopLogic)->updatePassword($post, $this->shop_id);
  159. if(true === $res){
  160. return JsonServer::success('密码修改成功');
  161. }
  162. return JsonServer::error($res);
  163. }
  164. }