作者 李忠强

更新

@@ -363,6 +363,24 @@ class Rider extends Api @@ -363,6 +363,24 @@ class Rider extends Api
363 $this->success('提现成功'); 363 $this->success('提现成功');
364 } 364 }
365 365
  366 + /**
  367 + * @ApiTitle (骑手提现页面)
  368 + * @ApiMethod (POST)
  369 + * @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
  370 + * @ApiReturn ({
  371 + 'code':'1',
  372 + 'msg':'提现成功'
  373 + })
  374 + */
  375 + public function withdrawDetail()
  376 + {
  377 + $data = [
  378 + 'money' => $this->auth->money,
  379 + 'content' => Config::get('site.withdraw_content')
  380 + ];
  381 + $this->success('提现成功',$data);
  382 + }
  383 +
366 384
367 /** 385 /**
368 * @ApiTitle (联系客服) 386 * @ApiTitle (联系客服)
@@ -52,4 +52,5 @@ return array ( @@ -52,4 +52,5 @@ return array (
52 'work_time' => '早9:00-晚9:00', 52 'work_time' => '早9:00-晚9:00',
53 'work_qrcode' => '', 53 'work_qrcode' => '',
54 'work_mobile' => '17695794151', 54 'work_mobile' => '17695794151',
  55 + 'withdraw_content' => '提现说明',
55 ); 56 );