select()->toArray(); foreach ($list as &$value) { $file_path = UploadFile::where('file_id', $value['image_id'])->field('file_id,file_path,file_type,storage,domain')->find(); $value['image'] = getUrl($file_path['file_path'], $file_path['domain']); } return $this->renderSuccess($list); } /** * @notes:获取小程序配置 * @return Json * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException * @author: wanghousheng */ public function wxAppSetting(): Json { $data = (new \app\api\model\wxapp\Setting())->info(); return $this->renderSuccess($data); } /** * @return mixed */ public function cityList($search = "") { $model = City::withoutGlobalScope()->where('status', 1); if ($search) { $model = $model->where('name|first_letter', 'like', "%$search%"); } $city_list = $model->select(); $hotList = []; $list = []; foreach ($city_list as $seq => &$item) { if ($item['is_hot'] == 1) { $hotList[] = $item; } $list[$item['first_letter']][] = $item; } $result = ['hotList'=>$hotList, "cityList"=>$list]; return $this->renderSuccess($result); } }