作者 sgj
1 个管道 的构建 通过 耗费 1 秒

添加城市和对应的活动类型

... ... @@ -467,7 +467,11 @@ class IndexController extends RestBaseController
public function activityType(){
$Type=new ActivityTypeModel();
$type=$Type->selectData();
$this->success('',$type);
foreach ($type as $k=>$v){
$return['type_name'][$k]=$v['type_name'];
$return['id'][$k]=$v['id'];
}
$this->success('',$return);
}
/**
* @title 通过类型获取活动
... ...