123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use think\Db;
- use app\common\service\UserService;
- /**
- *
- */
- class Userbank extends Api
- {
- protected $noNeedLogin = [];
- protected $noNeedRight = ['*'];
- /**
- * 绑定银行卡
- */
- public function bindBank() {
- $bank_no = input('bank_no');// 银行账号
- if(!$bank_no) {
- $this->error("请将信息填写完整");
- }
- $userId = $this->auth->id;
- //检测实名认证
- $userAuthWhere['user_id'] = $userId;
- $userAuth = Db::name('user_idconfirm')->where($userAuthWhere)->find();
- if (empty($userAuth)) {
- $this->error('请先实名认证');
- }
- if ($userAuth['status'] != 1) {
- $this->error('请先实名认证通过');
- }
- $truename = $userAuth['truename'];
- $idCard = $userAuth['idcard'];
- // 查询是否有过绑定
- $bankInfo = Db::name('user_bank')->where(["user_id"=>$userId])->find();
- $data = [];
- $data["truename"] = $truename;
- $data["idcard"] = $idCard;
- $data["bank_no"] = $bank_no;
- if($bankInfo) {
- $res = Db::name('user_bank')->where(["user_id"=>$userId])->update($data);
- } else {
- $data["user_id"] = $userId;
- $res = Db::name('user_bank')->insertGetId($data);
- }
- $this->success("银行卡绑定成功!");
- }
- /**
- * 获取绑定银行卡信息
- */
- public function getBankInfo() {
- // 查询是否有过绑定
- $bankInfo = Db::name('user_bank')->where(["user_id"=>$this->auth->id])->find();
- $this->success("获取成功!",$bankInfo);
- }
- //解绑
- public function unbind(){
- $type = input('type',0);
- if(!in_array($type,[1,2])){
- $this->error();
- }
- if($type == 1){
- $table_name = 'user_alipay';
- }else{
- $table_name = 'user_bank';
- }
- Db::name($table_name)->where('user_id',$this->auth->id)->delete();
- $this->success("解绑成功");
- }
- /**
- * 绑定支付宝
- */
- public function bindAlipay() {
- $payNo = input('pay_no');//支付宝账号
- if(!$payNo) {
- $this->error("请将信息填写完整");
- }
- $userId = $this->auth->id;
- //检测实名认证
- $userAuthWhere['user_id'] = $userId;
- $userAuth = Db::name('user_idconfirm')->where($userAuthWhere)->find();
- if (empty($userAuth)) {
- $this->error('请先实名认证');
- }
- if ($userAuth['status'] != 1) {
- $this->error('请先实名认证通过');
- }
- // 查询是否有过绑定
- $bankInfo = Db::name('user_alipay')->where(["user_id"=>$userId])->find();
- $data = [];
- $data["truename"] = $userAuth['truename'];
- $data["pay_no"] = $payNo;
- $data["idcard"] = $userAuth['idcard'];
- if($bankInfo) {
- $res = Db::name('user_alipay')->where(["user_id"=>$userId])->update($data);
- } else {
- $data["user_id"] = $userId;
- $res = Db::name('user_alipay')->insertGetId($data);
- }
- if($res) {
- $this->success("支付宝绑定成功!");
- } else {
- $this->error("网络异常,请稍后重试!");
- }
- }
- /**
- * 获取绑定银行卡信息
- */
- public function getAlipayInfo() {
- // 查询是否有过绑定
- $alipayInfo = Db::name('user_alipay')->where(["user_id"=>$this->auth->id])->find();
- $this->success("获取成功!",$alipayInfo);
- }
- }
|