|
@@ -111,8 +111,6 @@ class openmeetClassAction extends openapiAction
|
|
|
// 党委会议(需要加入议题)
|
|
|
if ($nowMeet['type'] == 2) {
|
|
|
$topics = $this->db->getall("select `id`, `topic_title`, `topic_attendee`, `topic_state`, `topic_info` from `[Q]meeting_topics` where mid = {$nowMeet['id']} order by sort");
|
|
|
- $this_topics = [];
|
|
|
- $next_topics = [];
|
|
|
// 会议议题处理
|
|
|
for ($i = 0; $i < count($topics); $i++) {
|
|
|
$info = $topics[$i];
|
|
@@ -132,6 +130,9 @@ class openmeetClassAction extends openapiAction
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if (count($data['participants']) == 0) {
|
|
|
+ $data['participants'] = [];
|
|
|
+ }
|
|
|
|
|
|
} else {
|
|
|
// 普通会议,议题为空
|