1, ); $data = CommodityModel::where($where)->order('c_sort desc')->select()->toArray(); $data = $this->commodityimage($data, 'c_images'); if ($data) { return $this->result('', $data, 200); } else { return $this->result('暂无商品', [], 100); } } /** * 商品类型 */ public function typeIndex() { $data = Db::name('ctype')->select(); if ($data) { return $this->result('', $data, 200); } else { return $this->result('暂无分类', [], 100); } } /** * 分类下的商品 * @ApiMethod (POST) * @param string $t_id 分类id */ public function typeCommodity() { $params = $this->request->post(); $reles = [ 't_id' => 'require|number' ]; $msg = [ 't_id.require' => '网络错误', 't_id.number' => '网络错误' ]; $validata = $this->validate($params, $reles, $msg); if (is_string($validata)) { return $this->result($validata, [], 100); } $data = CommodityModel::where('c_type', $params['t_id'])->order('c_sort desc')->select()->toArray(); if ($data) { return $this->result('', $data, 200); } else { return $this->result('暂无商品', [], 100); } } /** * 商品详情 * @ApiMethod (POST) * @param string $c_id 商品id * @param string $user_id 用户id */ public function commodityInfo() { $params = $this->request->post(); $rules = [ 'c_id' => 'require|number', 'user_id' => 'require' ]; $msg = [ 'c_id.require' => "网络错误", 'user_id.require' => "网络错误", 'c_id.number' => '网络错误', ]; $validata = $this->validate($params, $rules, $msg); if (is_string($validata)) { return $this->result($validata, [], 100); } $data = CommodityModel::with(['parameter' => function ($query) { //预加载闭包查询 $query->with('commoditycolor'); }]) ->where('c_state_switch', 1) ->select(); if ($data) { $data = $this->commodityimage($data, 'c_images'); if ($data) { $footdata = array( 'user_id' => $params['user_id'], 'c_id' => $params['c_id'], );//足迹 $foot = new Foot(); $addFoot = $foot->allowField(true)->save($footdata);//添加足迹 return $this->result('', $data, '200'); } } else { return $this->result('网络错误', [], '100'); } } }