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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\shop;
  20. use app\admin\logic\shop\GoodsLogic;
  21. use app\common\basics\AdminBase;
  22. use app\common\server\JsonServer;
  23. /**
  24. * 主营类目
  25. * Class Category
  26. * @package app\admin\controller\shop
  27. */
  28. class Goods extends AdminBase
  29. {
  30. /**
  31. * NOTE: 主营类目列表
  32. * @author: 张无忌
  33. */
  34. public function lists()
  35. {
  36. if ($this->request->isAjax()) {
  37. $get = $this->request->get();
  38. $lists = GoodsLogic::lists($get);
  39. return JsonServer::success('获取成功', $lists);
  40. }
  41. return view();
  42. }
  43. /**
  44. * NOTE: 新增主营类目
  45. * @author: 张无忌
  46. */
  47. public function add()
  48. {
  49. if ($this->request->isAjax()) {
  50. $post = $this->request->post();
  51. if(!isset($post['image']) || empty($post['image'])) {
  52. return JsonServer::error('类目图标不能为空');
  53. }
  54. //验证
  55. if($post['pc_num'] <= 0){
  56. return JsonServer::error('PC数量必须为正整数');
  57. }
  58. if($post['mobile_num'] <= 0){
  59. return JsonServer::error('手机设备必须为正整数');
  60. }
  61. if($post['run_num'] <= 0){
  62. return JsonServer::error('同时运行设备数必须为正整数');
  63. }
  64. $res = GoodsLogic::add($post);
  65. if ($res === false) {
  66. $error = GoodsLogic::getError() ?: '新增失败';
  67. return JsonServer::error($error);
  68. }
  69. return JsonServer::success('新增成功');
  70. }
  71. return view();
  72. }
  73. /**
  74. * NOTE: 编辑主营类目
  75. * @author: 张无忌
  76. */
  77. public function edit()
  78. {
  79. if ($this->request->isAjax()) {
  80. $post = $this->request->post();
  81. if(!isset($post['image']) || empty($post['image'])) {
  82. return JsonServer::error('类目图标不能为空');
  83. }
  84. $res = GoodsLogic::edit($post);
  85. if ($res === false) {
  86. $error = GoodsLogic::getError() ?: '编辑失败';
  87. return JsonServer::error($error);
  88. }
  89. return JsonServer::success('编辑成功');
  90. }
  91. $id = $this->request->get('id');
  92. return view('', [
  93. 'detail' => GoodsLogic::detail($id)
  94. ]);
  95. }
  96. /**
  97. * NOTE: 删除主营类目
  98. * @author: 张无忌
  99. */
  100. public function del()
  101. {
  102. if ($this->request->isAjax()) {
  103. $id = $this->request->post('id');
  104. $res = GoodsLogic::del($id);
  105. if ($res === false) {
  106. $error = GoodsLogic::getError() ?: '删除失败';
  107. return JsonServer::error($error);
  108. }
  109. return JsonServer::success('删除成功');
  110. }
  111. return JsonServer::error('请求异常');
  112. }
  113. }