增加日程功能

This commit is contained in:
liweisen 2020-11-19 09:12:39 +08:00
parent 634503a1be
commit 0555d29d8c

View File

@ -71,6 +71,7 @@ class Events extends BasicApi
$status = Request::post('status', -1);
$where[] = ['deleted', '=', 0];
$where[] = ['organization_code', '=', getCurrentOrganizationCode()];
$where[] = ['end_time', '>=', nowTime()];
$memberWhere = [['member_code', '=', getCurrentMember()['code']]];
if ($status != -1) {
$memberWhere[] = ['status', '=', $status];