作者 chencheng

0601-10

@@ -331,7 +331,9 @@ class Client extends Base @@ -331,7 +331,9 @@ class Client extends Base
331 $w['coupon_type'] = 1; 331 $w['coupon_type'] = 1;
332 $w['type'] = $param['type']; 332 $w['type'] = $param['type'];
333 $data = Db::name('verification_receive')->where($w)->paginate(10); 333 $data = Db::name('verification_receive')->where($w)->paginate(10);
334 - 334 + foreach($data as $k=>&$v){
  335 + $v['qr_code'] = !empty($v['qr_code'])?request()->domain().$v['qr_code']:'';
  336 + }
335 return $this->success('',$data); 337 return $this->success('',$data);
336 } 338 }
337 339