作者 chencheng

12

@@ -49,11 +49,13 @@ class Business extends Base @@ -49,11 +49,13 @@ class Business extends Base
49 49
50 /** 50 /**
51 * 1、商家首页 获取商家人员信息 51 * 1、商家首页 获取商家人员信息
  52 + *
52 */ 53 */
53 public function getstaff(){ 54 public function getstaff(){
54 $data = $this->staff; 55 $data = $this->staff;
55 $store = Db::name('verification_store')->where(['id'=>$data['verification_store_id']])->find(); 56 $store = Db::name('verification_store')->where(['id'=>$data['verification_store_id']])->find();
56 $data['image'] = !empty($store['image'])?request()->domain().$store['image']:''; 57 $data['image'] = !empty($store['image'])?request()->domain().$store['image']:'';
  58 +
57 $this->success('活动获取成功',$data); 59 $this->success('活动获取成功',$data);
58 } 60 }
59 /** 61 /**