Commit ae785bc1 ae785bc1c3f4ee3905e924076aee7ca5e0818d81 by lemon

*

1 parent bb64f702
......@@ -16,8 +16,12 @@ Route::group([], function (){
//提现审核通过
Route::post('musician/withdraw', 'MusicianWithdrawController@withdraw');
Route::get('no', function (){
$no = json_encode(['type'=>1, 'identifier'=>'341281199711060202']);
var_dump(\App\Helper\AesEncrypt::encrypt($no));
Route::get('no', function (\Illuminate\Http\Request $request){
if ($request->input('token') != 'xlb') {
return 'fail';
}
$no = json_encode(['type'=>1, 'identifier'=>$request->input('no')]);
return \App\Helper\AesEncrypt::encrypt($no);
});
});
......