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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. $post = $this->request->post();
  41. if (empty($post['expire_time'])) {
  42. $post['expire_time'] = time();
  43. }
  44. (new StoreLValidate())->goCheck('add', $post);
  45. $lists = StoreLogic::add($post);
  46. if ($lists === false) {
  47. $error = StoreLogic::getError() ?: '新增失败';
  48. return JsonServer::error($error);
  49. }
  50. return JsonServer::success('新增成功');
  51. }
  52. return view('', [
  53. 'category' => CategoryLogic::getCategory(),
  54. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
  55. ]);
  56. }
  57. /**
  58. * NOTE: 编辑商家
  59. * @author: 张无忌
  60. */
  61. public function edit()
  62. {
  63. if ($this->request->isAjax()) {
  64. (new StoreLValidate())->goCheck('edit');
  65. $post = $this->request->post();
  66. if (!empty($post['password'])) {
  67. (new StoreLValidate())->goCheck('pwd');
  68. }
  69. $res = StoreLogic::edit($post);
  70. if ($res === false) {
  71. $error = StoreLogic::getError() ?: '编辑失败';
  72. return JsonServer::error($error);
  73. }
  74. return JsonServer::success('编辑成功');
  75. }
  76. $id = $this->request->get('id');
  77. return view('', [
  78. 'detail' => StoreLogic::detail($id),
  79. 'category' => CategoryLogic::getCategory(),
  80. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
  81. ]);
  82. }
  83. /**
  84. * NOTE: 设置商家
  85. * @author: 张无忌
  86. */
  87. public function set()
  88. {
  89. if ($this->request->isAjax()) {
  90. (new StoreLValidate())->goCheck('set');
  91. $post = $this->request->post();
  92. $res = StoreLogic::set($post);
  93. if ($res === false) {
  94. $error = StoreLogic::getError() ?: '设置失败';
  95. return JsonServer::error($error);
  96. }
  97. return JsonServer::success('设置成功');
  98. }
  99. $id = $this->request->get('id');
  100. //调用服务套餐
  101. $sg = StoreLogic::getServerGoods($id);
  102. return view('', [
  103. 'detail' => StoreLogic::detail($id),
  104. 'goods_list' => $sg
  105. ]);
  106. }
  107. /**
  108. * NOTE: 编辑账号
  109. * @author: 张无忌
  110. */
  111. public function account()
  112. {
  113. if ($this->request->isAjax()) {
  114. (new StoreLValidate())->goCheck('account');
  115. $post = $this->request->post();
  116. if (!empty($post['password'])) {
  117. (new StoreLValidate())->goCheck('pwd');
  118. }
  119. $res = StoreLogic::account($post);
  120. if ($res === false) {
  121. $error = StoreLogic::getError() ?: '更新失败';
  122. return JsonServer::error($error);
  123. }
  124. return JsonServer::success('更新成功');
  125. }
  126. $id = $this->request->get('id');
  127. return view('', [
  128. 'detail' => StoreLogic::getAccountInfo($id)
  129. ]);
  130. }
  131. /**
  132. * @notes 批量操作
  133. * @return \think\response\Json|void
  134. * @author 段誉
  135. * @date 2022/3/17 10:42
  136. */
  137. public function batchOperation()
  138. {
  139. if ($this->request->isAjax()) {
  140. (new StoreStatusValidate())->goCheck();
  141. $post = $this->request->post();
  142. $res = StoreLogic::batchOperation($post['ids'], $post['field'], $post['value']);
  143. if (false === $res) {
  144. $error = StoreLogic::getError() ?: '操作失败';
  145. return JsonServer::error($error);
  146. }
  147. return JsonServer::success('操作成功');
  148. }
  149. }
  150. }