WalletManage.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\UserBank;
  4. use library\tools\Data;
  5. use app\common\model\User;
  6. /**
  7. * @title 会员钱包||银行卡管理【二期的忽略】
  8. * @controller WalletManage
  9. * @group base
  10. */
  11. class WalletManage extends Base
  12. {
  13. public function initialize()
  14. {
  15. parent::initialize();
  16. parent::checkLogin();
  17. }
  18. /**
  19. * @title 更改或绑定银行卡
  20. * @desc 更改或绑定银行卡
  21. * @author qc
  22. * @method POST
  23. * @url /api/Wallet_manage/bindBankAccount
  24. * @param name:account_id type:string require:1 default:-- desc:记录id(修改时必传)
  25. * @param name:phone type:string require:1 default:-- desc:手机号
  26. * @param name:code type:string require:1 default:-- desc:验证码
  27. * @param name:real_name type:string require:1 default:-- desc:真实姓名
  28. * @param name:card_no type:string require:1 default:-- desc:账号
  29. * @param name:bank_name type:string require:1 default:-- desc:所属银行
  30. */
  31. public function bindBankAccount()
  32. {
  33. $phone = input('post.phone');
  34. $code = input('post.code');
  35. $real_name = input('post.real_name');
  36. $card_no = input('post.card_no');
  37. $bank_name = input('post.bank_name');
  38. $account_id = input('post.account_id');
  39. $check_code = $this->checkPhoneCode($phone,$code);
  40. if(!$check_code) $this->error('验证码错误');
  41. $account_data =[
  42. 'user_id' => $this->user_id,
  43. 'real_name' => $real_name,
  44. 'bank_name' => $bank_name,
  45. 'card_no' => $card_no,
  46. 'create_time' => date('Y-m-d H:i:s'),
  47. ];
  48. if($account_id) $account_data['id'] = $account_id;
  49. (new UserBank())->save($account_data);
  50. $this->success('绑定成功');
  51. }
  52. /**
  53. * @title 获取绑定银行卡列表
  54. * @desc 获取绑定银行卡列表
  55. * @author qc
  56. * @method GET
  57. * @url /api/Wallet_manage/getBankAccountList
  58. * @return name:real_name type:string require:1 default:-- desc:真实姓名
  59. * @return name:card_no type:string require:1 default:-- desc:账号
  60. * @return name:bank_name type:string require:1 default:-- desc:所属银行
  61. */
  62. public function getBankAccountList()
  63. {
  64. $list = UserBank::field('id,real_name,card_no,bank_name')
  65. ->where(['user_id'=>$this->user_id,'type'=>1,'is_deleted'=>0])
  66. ->order('id desc')->select()->toArray();
  67. $this->success('ok',['list'=>$list]);
  68. }
  69. /**
  70. * @title 获取绑定银行卡详情
  71. * @desc 获取绑定银行卡详情
  72. * @author qc
  73. * @method GET
  74. * @url /api/Wallet_manage/getBankAccountDetail
  75. * @param name:account_id type:string require:1 default:-- desc:id
  76. * @return name:real_name type:string require:1 default:-- desc:真实姓名
  77. * @return name:card_no type:string require:1 default:-- desc:账号
  78. * @return name:bank_name type:string require:1 default:-- desc:所属银行
  79. */
  80. public function getBankAccountDetail()
  81. {
  82. $account_id = input('get.account_id');
  83. $account_info = UserBank::field('id,real_name,card_no,bank_name')->where(['user_id'=>$this->user_id,'id'=>$account_id,'is_deleted'=>0])->find();
  84. $account_info ? $this->success('ok',['account'=>$account_info->toArray()]) : $this->error('没找到记录');
  85. }
  86. /**
  87. * @title 解除银行卡绑定
  88. * @desc 解除银行卡绑定
  89. * @author qc
  90. * @method POST
  91. * @url /api/Wallet_manage/delUserBank
  92. * @param name:account_id type:string require:1 default:-- desc:id
  93. */
  94. public function delUserBank()
  95. {
  96. $account_id = input('post.account_id');
  97. UserBank::where(['user_id'=>$this->user_id,'id'=>$account_id])->update(['is_deleted'=>1]);
  98. $this->success('银行卡解绑成功');
  99. }
  100. /**
  101. * @title 更换或设置提现密码
  102. * @desc 更换或设置提现密码
  103. * @author qc
  104. * @url /api/Wallet_manage/setPayPassword
  105. * @method POST
  106. * @header name:Authorization require:1 desc:Token
  107. * @param name:phone type:int require:1 default:-- desc:手机号
  108. * @param name:code type:int require:1 default:-- desc:手机号验证码
  109. * @param name:pay_password type:string default:-- desc:密码
  110. */
  111. public function setPayPassword()
  112. {
  113. $uid = $this->user_id;
  114. $phone = input('post.phone');
  115. $code = input('post.code');
  116. $pay_password = input('post.pay_password');
  117. if(empty($phone) || empty($code) || empty($pay_password)) $this->error('参数错误');
  118. $field = 'id,phone';
  119. $user_info = User::field($field)->where('id',$this->user_id)->find()->toArray();
  120. if(!$user_info['phone']) $this->error('请先绑定手机号');
  121. if($user_info['phone'] != $phone) $this->error('与绑定手机号不一致');
  122. $check_code = $this->checkPhoneCode($phone,$code);
  123. if(!$check_code) $this->error('验证码错误');;
  124. User::where('id',$uid)->update(['pay_password'=>encrypt_password($pay_password)]);
  125. $this->updatePhoneCode($check_code);
  126. $this->success('密码设置成功');
  127. }
  128. }