mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 06:49:37 +08:00
修改部分内容
This commit is contained in:
parent
d9a7de3f77
commit
1df7fb0f15
@ -136,7 +136,7 @@
|
|||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</a-card>
|
</a-card>
|
||||||
<a-card title='任务代办' bodyStyle='height: 554px'>
|
<a-card title='任务代办(会议审核)' bodyStyle='height: 554px'>
|
||||||
<a-list item-layout='horizontal' :data-source='waitList'>
|
<a-list item-layout='horizontal' :data-source='waitList'>
|
||||||
<a-list-item @click='goRes({status: "5"})' slot='renderItem' slot-scope='item, index'>
|
<a-list-item @click='goRes({status: "5"})' slot='renderItem' slot-scope='item, index'>
|
||||||
<!-- <a slot='actions'>审核</a>-->
|
<!-- <a slot='actions'>审核</a>-->
|
||||||
|
@ -514,7 +514,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.roomItem .disabled {
|
.roomItem .disabled {
|
||||||
background-color: #F2F2F2 !important;
|
background-color: #e4e4e4 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.roomItem .desc-item {
|
.roomItem .desc-item {
|
||||||
|
@ -39,9 +39,9 @@
|
|||||||
<a-select-option value=''>
|
<a-select-option value=''>
|
||||||
所有会议室
|
所有会议室
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-opt-group v-for='item in roomList' :label="item.name">
|
<a-select-opt-group v-for='item in roomList' :label='item.name'>
|
||||||
<a-select-option v-for='room in item.list' :value='room.name'>
|
<a-select-option v-for='room in item.list' :value='room.name'>
|
||||||
{{room.name}}
|
{{ room.name }}
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
</a-select-opt-group>
|
</a-select-opt-group>
|
||||||
</a-select>
|
</a-select>
|
||||||
@ -135,12 +135,12 @@
|
|||||||
</a-tag>
|
</a-tag>
|
||||||
</span>
|
</span>
|
||||||
<span slot='action' slot-scope='text, record'>
|
<span slot='action' slot-scope='text, record'>
|
||||||
<a @click='handleShow(record.id)'>查看</a>
|
<a-config-provider :auto-insert-space-in-button='false'>
|
||||||
<a v-if='record.canCancel' @click='cancelConfirm(record.id, record.status)' style='margin-left: 5px'>取消预约</a>
|
<a-button type='default' @click='handleShow(record.id)' style='margin-left: 5px' size='small'>查看</a-button>
|
||||||
|
</a-config-provider>
|
||||||
|
<a-button type='default' v-if='record.canCancel' @click='cancelConfirm(record.id, record.status)' style='margin-left: 5px' size='small'>取消预约</a-button>
|
||||||
<a-dropdown :trigger="['click']" v-if='record.canEdit'>
|
<a-dropdown :trigger="['click']" v-if='record.canEdit'>
|
||||||
<a class='ant-dropdown-link' @click='e => e.preventDefault()'>
|
<a-button type='default' class='ant-dropdown-link' @click='e => e.preventDefault()' style='margin-left: 5px' size='small'>修改信息</a-button>
|
||||||
修改信息
|
|
||||||
</a>
|
|
||||||
<a-menu slot='overlay'>
|
<a-menu slot='overlay'>
|
||||||
<a-menu-item key='0' @click='handleEdit(record.id, 1)'>
|
<a-menu-item key='0' @click='handleEdit(record.id, 1)'>
|
||||||
重新选择时间、会议室
|
重新选择时间、会议室
|
||||||
@ -150,9 +150,13 @@
|
|||||||
</a-menu-item>
|
</a-menu-item>
|
||||||
</a-menu>
|
</a-menu>
|
||||||
</a-dropdown>
|
</a-dropdown>
|
||||||
<a v-if='record.canApprove' @click='approve(record.id, 1)' style='margin-left: 5px'>通过</a>
|
<a-config-provider :auto-insert-space-in-button='false'>
|
||||||
<a v-if='record.canApprove' @click='approve(record.id, 2)' style='margin-left: 5px'>驳回</a>
|
<a-button type='primary' v-if='record.canApprove' @click='approve(record.id, 1)' style='margin-left: 5px' size='small'>通过</a-button>
|
||||||
<a v-if='record.canStaff' @click='staff(record.id)' style='margin-left: 5px'>分配会务</a>
|
</a-config-provider>
|
||||||
|
<a-config-provider :auto-insert-space-in-button='false'>
|
||||||
|
<a-button type='danger' v-if='record.canApprove' @click='approve(record.id, 2)' style='margin-left: 5px' size='small'>驳回</a-button>
|
||||||
|
</a-config-provider>
|
||||||
|
<a-button type='default' v-if='record.canStaff' @click='staff(record.id)' style='margin-left: 5px' size='small'>分配会务</a-button>
|
||||||
</span>
|
</span>
|
||||||
</s-table>
|
</s-table>
|
||||||
<RoomOrder-modal ref='modal' @ok='handleOk' />
|
<RoomOrder-modal ref='modal' @ok='handleOk' />
|
||||||
@ -633,7 +637,7 @@ export default {
|
|||||||
this.roomList = roomArr
|
this.roomList = roomArr
|
||||||
console.log(this.roomList)
|
console.log(this.roomList)
|
||||||
})
|
})
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user