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

Store.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. namespace app\admin\controller\shop;
  3. use app\admin\logic\shop\CategoryLogic;
  4. use app\admin\logic\shop\StoreLogic;
  5. use app\admin\validate\shop\StoreLValidate;
  6. use app\admin\validate\shop\StoreStatusValidate;
  7. use app\common\basics\AdminBase;
  8. use app\common\server\ConfigServer;
  9. use app\common\server\JsonServer;
  10. use think\facade\Log;
  11. /**
  12. * 商家管理
  13. * Class Store
  14. * @package app\admin\controller\shop
  15. */
  16. class Store extends AdminBase
  17. {
  18. /**
  19. * NOTE: 商家列表
  20. * @author: 张无忌
  21. */
  22. public function lists()
  23. {
  24. if ($this->request->isAjax()) {
  25. $get = $this->request->get();
  26. $lists = StoreLogic::lists($get);
  27. return JsonServer::success('获取成功', $lists);
  28. }
  29. return view('', [
  30. 'category' => CategoryLogic::getCategory()
  31. ]);
  32. }
  33. /**
  34. * NOTE: 新增商家
  35. * @author: 张无忌
  36. */
  37. public function add()
  38. {
  39. if ($this->request->isAjax()) {
  40. (new StoreLValidate())->goCheck('add');
  41. $post = $this->request->post();
  42. $lists = StoreLogic::add($post);
  43. if ($lists === false) {
  44. $error = StoreLogic::getError() ?: '新增失败';
  45. return JsonServer::error($error);
  46. }
  47. return JsonServer::success('新增成功');
  48. }
  49. return view('', [
  50. 'category' => CategoryLogic::getCategory(),
  51. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
  52. ]);
  53. }
  54. /**
  55. * NOTE: 编辑商家
  56. * @author: 张无忌
  57. */
  58. public function edit()
  59. {
  60. if ($this->request->isAjax()) {
  61. (new StoreLValidate())->goCheck('edit');
  62. $post = $this->request->post();
  63. if (!empty($post['password'])) {
  64. (new StoreLValidate())->goCheck('pwd');
  65. }
  66. $res = StoreLogic::edit($post);
  67. if ($res === false) {
  68. $error = StoreLogic::getError() ?: '编辑失败';
  69. return JsonServer::error($error);
  70. }
  71. return JsonServer::success('编辑成功');
  72. }
  73. $id = $this->request->get('id');
  74. return view('', [
  75. 'detail' => StoreLogic::detail($id),
  76. 'category' => CategoryLogic::getCategory(),
  77. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
  78. ]);
  79. }
  80. /**
  81. * NOTE: 设置商家
  82. * @author: 张无忌
  83. */
  84. public function set()
  85. {
  86. if ($this->request->isAjax()) {
  87. (new StoreLValidate())->goCheck('set');
  88. $post = $this->request->post();
  89. $res = StoreLogic::set($post);
  90. if ($res === false) {
  91. $error = StoreLogic::getError() ?: '设置失败';
  92. return JsonServer::error($error);
  93. }
  94. return JsonServer::success('设置成功');
  95. }
  96. $id = $this->request->get('id');
  97. //调用服务套餐
  98. $sg = StoreLogic::getServerGoods($id);
  99. return view('', [
  100. 'detail' => StoreLogic::detail($id),
  101. 'goods_list' => $sg
  102. ]);
  103. }
  104. /**
  105. * NOTE: 编辑账号
  106. * @author: 张无忌
  107. */
  108. public function account()
  109. {
  110. if ($this->request->isAjax()) {
  111. (new StoreLValidate())->goCheck('account');
  112. $post = $this->request->post();
  113. if (!empty($post['password'])) {
  114. (new StoreLValidate())->goCheck('pwd');
  115. }
  116. $res = StoreLogic::account($post);
  117. if ($res === false) {
  118. $error = StoreLogic::getError() ?: '更新失败';
  119. return JsonServer::error($error);
  120. }
  121. return JsonServer::success('更新成功');
  122. }
  123. $id = $this->request->get('id');
  124. return view('', [
  125. 'detail' => StoreLogic::getAccountInfo($id)
  126. ]);
  127. }
  128. /**
  129. * @notes 批量操作
  130. * @return \think\response\Json|void
  131. * @author 段誉
  132. * @date 2022/3/17 10:42
  133. */
  134. public function batchOperation()
  135. {
  136. if ($this->request->isAjax()) {
  137. (new StoreStatusValidate())->goCheck();
  138. $post = $this->request->post();
  139. $res = StoreLogic::batchOperation($post['ids'], $post['field'], $post['value']);
  140. if (false === $res) {
  141. $error = StoreLogic::getError() ?: '操作失败';
  142. return JsonServer::error($error);
  143. }
  144. return JsonServer::success('操作成功');
  145. }
  146. }
  147. }