mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 04:29:36 +08:00
1
This commit is contained in:
parent
110759f6d7
commit
2362e0b87e
@ -10,8 +10,10 @@
|
||||
</a-col>
|
||||
<a-col :md='5' :sm='15'>
|
||||
<a-form-item label='预约状态'>
|
||||
<a-select v-model='queryParam.stauts' placeholder='请选择会议室'>
|
||||
<a-select-option v-for='item in meetingStatusList' :key='item.value' :value='item.value'>{{item.label}}</a-select-option>
|
||||
<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>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
@ -97,7 +99,10 @@ export default {
|
||||
// 高级搜索 展开/关闭
|
||||
advanced: false,
|
||||
// 查询参数
|
||||
queryParam: {},
|
||||
queryParam: {
|
||||
title: null,
|
||||
statusValue: null
|
||||
},
|
||||
// 表头
|
||||
columns: [
|
||||
{
|
||||
@ -161,6 +166,10 @@ export default {
|
||||
rejectModalId: null,
|
||||
rejectContent: null,
|
||||
meetingStatusList: [
|
||||
{
|
||||
label: '全部',
|
||||
value: null
|
||||
},
|
||||
{
|
||||
label: '待支付',
|
||||
value: 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user