This commit is contained in:
SelfRidicule 2024-03-21 10:24:43 +08:00
parent 110759f6d7
commit 2362e0b87e

View File

@ -10,8 +10,10 @@
</a-col> </a-col>
<a-col :md='5' :sm='15'> <a-col :md='5' :sm='15'>
<a-form-item label='预约状态'> <a-form-item label='预约状态'>
<a-select v-model='queryParam.stauts' placeholder='请选择会议室'> <a-select v-model='queryParam.statusValue' placeholder='请选择会议室'>
<a-select-option v-for='item in meetingStatusList' :key='item.value' :value='item.value'>{{item.label}}</a-select-option> <a-select-option v-for='item in meetingStatusList' :key='item.value' :value='item.value'>
{{ item.label }}
</a-select-option>
</a-select> </a-select>
</a-form-item> </a-form-item>
</a-col> </a-col>
@ -97,7 +99,10 @@ export default {
// / // /
advanced: false, advanced: false,
// //
queryParam: {}, queryParam: {
title: null,
statusValue: null
},
// //
columns: [ columns: [
{ {
@ -161,6 +166,10 @@ export default {
rejectModalId: null, rejectModalId: null,
rejectContent: null, rejectContent: null,
meetingStatusList: [ meetingStatusList: [
{
label: '全部',
value: null
},
{ {
label: '待支付', label: '待支付',
value: 0 value: 0