where(['switch' => 1])->select(); return $this->data($data->toArray()); } //**市列表 */ public function city($city) { $data = Db::name('geo_city')->where(['province_code' => $city])->select(); return $this->data($data->toArray()); } //**区域列表 */ public function area($area) { $data = Db::name('geo_area')->where(['city_code' => $area])->select(); return $this->data($data->toArray()); } }