...
|
...
|
@@ -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 通过类型获取活动
|
...
|
...
|
|