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

Goods.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace app\shop\controller\distribution;
  3. use app\common\basics\ShopBase;
  4. use app\admin\logic\goods\CategoryLogic as MallCategoryLogic;
  5. use app\common\server\JsonServer;
  6. use app\shop\logic\distribution\GoodsLogic;
  7. use app\shop\logic\goods\CategoryLogic as ShopCategoryLogic;
  8. class Goods extends ShopBase
  9. {
  10. /**
  11. * @notes 分销商品列表页
  12. * @return \think\response\View
  13. * @author Tab
  14. * @date 2021/9/1 17:11
  15. */
  16. public function index()
  17. {
  18. if ($this->request->isPost()) {
  19. $params = $this->request->post();
  20. $params['shop_id'] = $this->shop_id;
  21. $lists = GoodsLogic::lists($params);
  22. return JsonServer::success('', $lists);
  23. }
  24. // 显示分销商品列表页
  25. $cate_list = MallCategoryLogic::categoryTreeeTree();
  26. $shop_cate_list = ShopCategoryLogic::listAll($this->shop_id);
  27. return view('', [
  28. 'cate_list' => $cate_list,
  29. 'shop_cate_list' => $shop_cate_list
  30. ]);
  31. }
  32. /**
  33. * @notes 设置佣金
  34. * @return \think\response\View
  35. * @author Tab
  36. * @date 2021/9/1 19:59
  37. */
  38. public function set()
  39. {
  40. if ($this->request->isPost()) {
  41. $params = $this->request->post();
  42. $params['shop_id'] = $this->shop_id;
  43. $result = GoodsLogic::set($params);
  44. if ($result) {
  45. return JsonServer::success('设置成功');
  46. }
  47. return JsonServer::error(GoodsLogic::getError());
  48. }
  49. $params = $this->request->get();
  50. $detail = GoodsLogic::detail($params);
  51. return view('', ['detail' => $detail]);
  52. }
  53. /**
  54. * @notes 参与分销/取消分销
  55. * @return \think\response\Json
  56. * @author Tab
  57. * @date 2021/9/2 10:03
  58. */
  59. public function isDistribution()
  60. {
  61. $params = $this->request->post();
  62. $params['shop_id'] = $this->shop_id;
  63. $result = GoodsLogic::isDistribution($params);
  64. if ($result) {
  65. return JsonServer::success('操作成功');
  66. }
  67. return JsonServer::error(GoodsLogic::getError());
  68. }
  69. }