作者 李忠强

更新

... ... @@ -363,6 +363,24 @@ class Rider extends Api
$this->success('提现成功');
}
/**
* @ApiTitle (骑手提现页面)
* @ApiMethod (POST)
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
* @ApiReturn ({
'code':'1',
'msg':'提现成功'
})
*/
public function withdrawDetail()
{
$data = [
'money' => $this->auth->money,
'content' => Config::get('site.withdraw_content')
];
$this->success('提现成功',$data);
}
/**
* @ApiTitle (联系客服)
... ...
... ... @@ -52,4 +52,5 @@ return array (
'work_time' => '早9:00-晚9:00',
'work_qrcode' => '',
'work_mobile' => '17695794151',
'withdraw_content' => '提现说明',
);
... ...