Commodity.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\CommodityModel;
  4. use app\api\model\Foot;
  5. use app\common\controller\Api;
  6. use think\Db;
  7. /**
  8. * 商品接口
  9. */
  10. class Commodity extends Api
  11. {
  12. protected $noNeedRight = '*';
  13. protected $noNeedLogin = '*';
  14. /**
  15. * 全部商品
  16. * @ApiMethod (POST)
  17. */
  18. public function commodityIndex()
  19. {
  20. $where = array(
  21. 'c_state_switch' => 1,
  22. );
  23. $data = CommodityModel::where($where)->order('c_sort desc')->select()->toArray();
  24. $data = $this->commodityimage($data, 'c_images');
  25. if ($data) {
  26. return $this->result('', $data, 200);
  27. } else {
  28. return $this->result('暂无商品', [], 100);
  29. }
  30. }
  31. /**
  32. * 商品类型
  33. */
  34. public function typeIndex()
  35. {
  36. $data = Db::name('ctype')->select();
  37. if ($data) {
  38. return $this->result('', $data, 200);
  39. } else {
  40. return $this->result('暂无分类', [], 100);
  41. }
  42. }
  43. /**
  44. * 分类下的商品
  45. * @ApiMethod (POST)
  46. * @param string $t_id 分类id
  47. */
  48. public function typeCommodity()
  49. {
  50. $params = $this->request->post();
  51. $reles = [
  52. 't_id' => 'require|number'
  53. ];
  54. $msg = [
  55. 't_id.require' => '网络错误',
  56. 't_id.number' => '网络错误'
  57. ];
  58. $validata = $this->validate($params, $reles, $msg);
  59. if (is_string($validata)) {
  60. return $this->result($validata, [], 100);
  61. }
  62. $data = CommodityModel::where('c_type', $params['t_id'])->order('c_sort desc')->select()->toArray();
  63. if ($data) {
  64. return $this->result('', $data, 200);
  65. } else {
  66. return $this->result('暂无商品', [], 100);
  67. }
  68. }
  69. /**
  70. * 商品详情
  71. * @ApiMethod (POST)
  72. * @param string $c_id 商品id
  73. * @param string $user_id 用户id
  74. */
  75. public function commodityInfo()
  76. {
  77. $params = $this->request->post();
  78. $rules = [
  79. 'c_id' => 'require|number',
  80. 'user_id' => 'require'
  81. ];
  82. $msg = [
  83. 'c_id.require' => "网络错误",
  84. 'user_id.require' => "网络错误",
  85. 'c_id.number' => '网络错误',
  86. ];
  87. $validata = $this->validate($params, $rules, $msg);
  88. if (is_string($validata)) {
  89. return $this->result($validata, [], 100);
  90. }
  91. $data = CommodityModel::with(['parameter' => function ($query) { //预加载闭包查询
  92. $query->with('commoditycolor');
  93. }])
  94. ->where('c_state_switch', 1)
  95. ->select();
  96. if ($data) {
  97. $data = $this->commodityimage($data, 'c_images');
  98. if ($data) {
  99. $footdata = array(
  100. 'user_id' => $params['user_id'],
  101. 'c_id' => $params['c_id'],
  102. );//足迹
  103. $foot = new Foot();
  104. $addFoot = $foot->allowField(true)->save($footdata);//添加足迹
  105. return $this->result('', $data, '200');
  106. }
  107. } else {
  108. return $this->result('网络错误', [], '100');
  109. }
  110. }
  111. }