mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 12:39:36 +08:00
描述:会议预约查询
This commit is contained in:
parent
ed9e2d5df3
commit
110759f6d7
@ -10,12 +10,9 @@
|
|||||||
</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-input placeholder='请输入预约状态' v-model='queryParam.stauts' />
|
<a-select v-model='queryParam.stauts' placeholder='请选择会议室'>
|
||||||
</a-form-item>
|
<a-select-option v-for='item in meetingStatusList' :key='item.value' :value='item.value'>{{item.label}}</a-select-option>
|
||||||
</a-col>
|
</a-select>
|
||||||
<a-col :md='5' :sm='15'>
|
|
||||||
<a-form-item label='订单号'>
|
|
||||||
<a-input placeholder='请输入订单号' v-model='queryParam.oderNumber' />
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :md='8' :sm='24'>
|
<a-col :md='8' :sm='24'>
|
||||||
@ -104,7 +101,7 @@ export default {
|
|||||||
// 表头
|
// 表头
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: '会议名称',
|
title: '会议主题',
|
||||||
dataIndex: 'title'
|
dataIndex: 'title'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -162,7 +159,29 @@ export default {
|
|||||||
rejectModalVisible: false,
|
rejectModalVisible: false,
|
||||||
rejectConfirmLoading: false,
|
rejectConfirmLoading: false,
|
||||||
rejectModalId: null,
|
rejectModalId: null,
|
||||||
rejectContent: null
|
rejectContent: null,
|
||||||
|
meetingStatusList: [
|
||||||
|
{
|
||||||
|
label: '待支付',
|
||||||
|
value: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '待使用',
|
||||||
|
value: 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '进行中',
|
||||||
|
value: 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '已结束',
|
||||||
|
value: 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '已取消',
|
||||||
|
value: 4
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters: {},
|
filters: {},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user