Good.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. 'status' => '',
  21. 'type' => ''
  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. 'type',
  38. 'good_remark' => '',
  39. ], 'post');
  40. validate(GoodValidate::class)->scene('add')->check($param);
  41. return GoodLogic::add($param);
  42. }
  43. //读取商品详情
  44. public function read()
  45. {
  46. $id = $this->request->post('id/d', 0);
  47. return GoodLogic::read($id);
  48. }
  49. //编辑商品
  50. public function edit()
  51. {
  52. $param = $this->request->only([
  53. 'id',
  54. 'good_cover_img',
  55. 'good_name',
  56. 'moq',
  57. 'step',
  58. 'good_banner_img',
  59. 'good_img',
  60. 'good_param',
  61. 'unit_id',
  62. 'good_remark',
  63. ], 'post');
  64. validate(GoodValidate::class)->scene('edit')->check($param);
  65. return GoodLogic::edit($param);
  66. }
  67. //商品启禁用
  68. public function status()
  69. {
  70. $param = $this->request->only(['id', 'status',], 'post');
  71. $val = Validate::rule(Config::get('validate_rules.status'));
  72. if (!$val->check($param)) throw new ValidateException($val->getError());
  73. return GoodLogic::status($param);
  74. }
  75. //删除商品
  76. public function delete()
  77. {
  78. $id = $this->request->post('id/d', 0);
  79. return GoodLogic::delete($id);
  80. }
  81. }