...
|
...
|
@@ -9,6 +9,7 @@ namespace api\index\controller; |
|
|
|
|
|
use api\index\model\ActivityModel;
|
|
|
use api\index\model\JoinModel;
|
|
|
use api\index\model\PositionProvinceModel;
|
|
|
use api\index\model\SlideItemModel;
|
|
|
use api\index\model\UserModel;
|
|
|
use api\index\model\VolunteerModel;
|
...
|
...
|
@@ -214,7 +215,7 @@ class IndexController extends RestBaseController |
|
|
* @return button_title:按钮标题
|
|
|
* @return join:参加用户@
|
|
|
* @join photo:照片 name:名称 level:星级
|
|
|
* @return content_status:按钮状态6.用户是志愿者,但是未报名参加活动5.已结束(活动过期)4.已签到(用户是志愿者,已报名活动,已通过审核,已签到)3.签到(用户是志愿者,已报名活动,选择线下或线上+线下,已通过审核,按钮变为签到但不可点击,活动有效时间内,变为可点击状态)2.待审核(用户是志愿者,已报名活动,但是未通过审核)1.报名 (用户是志愿者,但是未报名参加活动)
|
|
|
* @return button_status:按钮状态6.用户是志愿者,但是未报名参加活动5.已结束(活动过期)4.已签到(用户是志愿者,已报名活动,已通过审核,已签到)3.签到(用户是志愿者,已报名活动,选择线下或线上+线下,已通过审核,按钮变为签到但不可点击,活动有效时间内,变为可点击状态)2.待审核(用户是志愿者,已报名活动,但是未通过审核)1.报名 (用户是志愿者,但是未报名参加活动)
|
|
|
*/
|
|
|
public function activity_info(){
|
|
|
$id = $this->request->param('id');
|
...
|
...
|
@@ -403,6 +404,22 @@ class IndexController extends RestBaseController |
|
|
}
|
|
|
$this->error('报名失败');
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @title 获取城市列表
|
|
|
* @description 活动申请
|
|
|
* @author Xiaogang Wang
|
|
|
* @url /index/index/cityList
|
|
|
* @method GET
|
|
|
*
|
|
|
* @header name:XX-Token require:1 default: desc:token
|
|
|
*
|
|
|
* @param name:id type:int require:1 other: desc:城市id
|
|
|
* @param name:province_name type:int require:1 other: desc:城市名称
|
|
|
*
|
|
|
*/
|
|
|
public function cityList(){
|
|
|
$Pro=new PositionProvinceModel();
|
|
|
$pro=$Pro->selectData();
|
|
|
$this->success('',$pro);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|