...
|
...
|
@@ -305,4 +305,22 @@ class Video extends Api |
|
|
$this->success('成功',$link);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @ApiTitle 申请提现
|
|
|
* @ApiReturn ({
|
|
|
"code": 1,
|
|
|
"msg": "成功",
|
|
|
"time": "1621562257",
|
|
|
"data": {
|
|
|
"withdraw": "申请提现", //申请提现
|
|
|
"hint": "申请成功,等待审核" //提现成功后提示
|
|
|
}
|
|
|
})
|
|
|
*/
|
|
|
public function withdraw(){
|
|
|
$link['withdraw']= config('site.withdraw'); //申请提现
|
|
|
$link['hint']= config('site.hint'); //提现成功后提示
|
|
|
$this->success('成功',$link);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|