|
@@ -135,8 +135,8 @@ class Withdraw extends Api
|
|
|
}
|
|
|
|
|
|
//提现记录
|
|
|
- /*public function withdraw_log(){
|
|
|
- $list = Db::name('withdraw')->field('id,money,type,createtime')->where(['user_id'=>$this->auth->id])->autopage()->select();
|
|
|
+ public function withdraw_log(){
|
|
|
+ $list = Db::name('withdraw')->field('acount_json',true)->where(['user_id'=>$this->auth->id])->autopage()->select();
|
|
|
foreach($list as $key => &$val){
|
|
|
$val['remark'] = '';
|
|
|
|
|
@@ -145,11 +145,11 @@ class Withdraw extends Api
|
|
|
}elseif($val['type'] == 2){
|
|
|
$val['remark'] = '银行卡提现';
|
|
|
}else{
|
|
|
- $val['remark'] = '微信提现';
|
|
|
+ //$val['remark'] = '微信提现';
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$this->success('success',$list);
|
|
|
- }*/
|
|
|
+ }
|
|
|
|
|
|
}
|