Good.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\logic\GoodLogic;
  4. use app\admin\validate\GoodValidate;
  5. use app\BaseController;
  6. use think\exception\ValidateException;
  7. use think\facade\Config;
  8. use think\facade\Validate;
  9. //商品
  10. class Good extends BaseController
  11. {
  12. //获取商品列表
  13. public function list()
  14. {
  15. $param = $this->request->only([
  16. 'page' => 1,
  17. 'size' => 10,
  18. 'good_code' => '',
  19. 'good_name' => '',
  20. 'unit_id' => '',
  21. 'status' => '',
  22. ], 'post');
  23. return GoodLogic::list($param);
  24. }
  25. //添加商品
  26. public function add()
  27. {
  28. $param = $this->request->only([
  29. 'good_cover_img',
  30. 'good_name',
  31. 'moq',
  32. 'step',
  33. 'good_banner_img',
  34. 'good_img',
  35. 'good_param',
  36. 'unit_id',
  37. 'good_remark' => '',
  38. ], 'post');
  39. validate(GoodValidate::class)->scene('add')->check($param);
  40. return GoodLogic::add($param);
  41. }
  42. //读取商品详情
  43. public function read()
  44. {
  45. $id = $this->request->post('id/d', 0);
  46. return GoodLogic::read($id);
  47. }
  48. //编辑商品
  49. public function edit()
  50. {
  51. $param = $this->request->only([
  52. 'id',
  53. 'good_cover_img',
  54. 'good_name',
  55. 'moq',
  56. 'step',
  57. 'good_banner_img',
  58. 'good_img',
  59. 'good_param',
  60. 'unit_id',
  61. 'good_remark',
  62. ], 'post');
  63. validate(GoodValidate::class)->scene('edit')->check($param);
  64. return GoodLogic::edit($param);
  65. }
  66. //商品启禁用
  67. public function status()
  68. {
  69. $param = $this->request->only(['id', 'status',], 'post');
  70. $val = Validate::rule(Config::get('validate_rules.status'));
  71. if (!$val->check($param)) throw new ValidateException($val->getError());
  72. return GoodLogic::status($param);
  73. }
  74. //删除商品
  75. public function delete()
  76. {
  77. $id = $this->request->post('id/d', 0);
  78. return GoodLogic::delete($id);
  79. }
  80. }