mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 12:39:36 +08:00
1
This commit is contained in:
parent
110759f6d7
commit
2362e0b87e
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user