|
@@ -356,6 +356,8 @@ class Party extends Common
|
|
|
$list = Db::name('party')->alias('party')
|
|
|
->join('party_type type','party.party_type = type.id','LEFT')
|
|
|
->field($field)->where($where)->order($orderby)->select();
|
|
|
+ $list = list_domain_image($list,['party_logo']);
|
|
|
+ $resdata = [];
|
|
|
if (!empty($list)) {
|
|
|
|
|
|
$roomService = new RoomService();
|
|
@@ -395,7 +397,7 @@ class Party extends Common
|
|
|
|
|
|
}
|
|
|
|
|
|
- $this->success("获取成功!",$list);
|
|
|
+ $this->success("获取成功!",$resdata);
|
|
|
}
|
|
|
|
|
|
private function reset_all_party(){
|