|
|
@@ -89,6 +89,7 @@ class MeetingService extends BaseService
|
|
|
$stores = '';
|
|
|
if($info['store_ids']){
|
|
|
$stores = UserModel::whereIn('id', $info['store_ids'])
|
|
|
+ ->select(['id','avatar','realname','nickname','mobile','department','position','status'])
|
|
|
->where(['mark'=>1])
|
|
|
->get();;
|
|
|
}
|
|
|
@@ -97,6 +98,7 @@ class MeetingService extends BaseService
|
|
|
$supervisors = '';
|
|
|
if($info['supervisor_ids']){
|
|
|
$supervisors = SupervisorsModel::whereIn('id', $info['supervisor_ids'])
|
|
|
+ ->select(['id','name','avatar','mobile','company','occupation','department','position','status'])
|
|
|
->where(['mark'=>1])
|
|
|
->get();
|
|
|
}
|