feat:会议室预约会议室类型查询
This commit is contained in:
@@ -13,6 +13,11 @@
|
||||
placeholder="请选择类型"
|
||||
style="width: 150px;"
|
||||
>
|
||||
<SelectOption
|
||||
key="all"
|
||||
value="all">
|
||||
全部类型
|
||||
</SelectOption>
|
||||
<SelectOption
|
||||
v-for="item in getDictOptions('meeting_room_type')"
|
||||
:key="item.value"
|
||||
@@ -20,6 +25,7 @@
|
||||
>
|
||||
{{ item.label }}
|
||||
</SelectOption>
|
||||
|
||||
</Select>
|
||||
</a-form-item>
|
||||
<a-form-item label="会议日期">
|
||||
@@ -113,7 +119,7 @@ async function handleSearch() {
|
||||
openStartHours: openStartHours??undefined,
|
||||
openEndHours:openEndHours??undefined,
|
||||
appointmentTime:formState.appointmentTime?formState.appointmentTime.format('YYYY-MM-DD'):undefined,
|
||||
meetingRoomType:formState.meetingRoomType
|
||||
meetingRoomType:formState.meetingRoomType=='all'?undefined:formState.meetingRoomType,
|
||||
}
|
||||
meetingList.value =await notlist(obj);
|
||||
}
|
||||
|
Reference in New Issue
Block a user