mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 04:29:36 +08:00
修改筛选人数;
修改统计页面部分样式
This commit is contained in:
parent
74e08b9f44
commit
a1155c7e85
@ -69,7 +69,7 @@
|
||||
</a-card>
|
||||
<a-row>
|
||||
<a-col :span='18'>
|
||||
<a-card title='会议日历'>
|
||||
<a-card title='会议日历' bodyStyle='height: 780px'>
|
||||
<a-calendar :header-render='headerRender'>
|
||||
<ul slot='dateCellRender' slot-scope='value' class='c_meeting' style='padding: 0'>
|
||||
<a-popover :title='item.title' v-for='item in getListData(value)'>
|
||||
@ -127,7 +127,7 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-card>
|
||||
<a-card title='任务代办(小程序审核)'>
|
||||
<a-card title='任务代办(小程序审核)' bodyStyle='height: 554px'>
|
||||
<a-list item-layout='horizontal' :data-source='waitList'>
|
||||
<a-list-item slot='renderItem' slot-scope='item, index'>
|
||||
<!-- <a slot='actions'>审核</a>-->
|
||||
@ -506,7 +506,7 @@ export default {
|
||||
{
|
||||
name: '服务情况',
|
||||
type: 'pie',
|
||||
radius: ['70%', '100%'],
|
||||
radius: ['50%', '70%'],
|
||||
avoidLabelOverlap: false,
|
||||
label: {
|
||||
show: true
|
||||
@ -562,7 +562,7 @@ export default {
|
||||
{
|
||||
name: '会议室形式',
|
||||
type: 'pie',
|
||||
radius: ['70%', '100%'],
|
||||
radius: ['50%', '70%'],
|
||||
avoidLabelOverlap: false,
|
||||
label: {
|
||||
show: true
|
||||
|
@ -33,24 +33,15 @@
|
||||
全部
|
||||
</a-select-option>
|
||||
<a-select-option value='1'>
|
||||
0-10
|
||||
0-20
|
||||
</a-select-option>
|
||||
<a-select-option value='2'>
|
||||
11-20
|
||||
21-50
|
||||
</a-select-option>
|
||||
<a-select-option value='3'>
|
||||
21-30
|
||||
</a-select-option>
|
||||
<a-select-option value='4'>
|
||||
31-40
|
||||
</a-select-option>
|
||||
<a-select-option value='5'>
|
||||
41-50
|
||||
</a-select-option>
|
||||
<a-select-option value='6'>
|
||||
51-100
|
||||
</a-select-option>
|
||||
<a-select-option value='7'>
|
||||
<a-select-option value='4'>
|
||||
100以上
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
@ -234,24 +225,28 @@ export default {
|
||||
let minPerNum = 0
|
||||
let maxPerNum = 1000
|
||||
let perNumValue = this.queryParam.capacityNum
|
||||
if (perNumValue == 6) {
|
||||
if (perNumValue == 1) {
|
||||
// 1-20
|
||||
maxPerNum = 20
|
||||
minPerNum = 1
|
||||
} else if (perNumValue == 2) {
|
||||
// 21-50
|
||||
minPerNum = 21
|
||||
maxPerNum = 50
|
||||
} else if (perNumValue == 3) {
|
||||
// 51-100
|
||||
maxPerNum = 100
|
||||
minPerNum = 51
|
||||
} else if (perNumValue == 7) {
|
||||
// 100以上
|
||||
maxPerNum = 100
|
||||
} else if (perNumValue == 4) {
|
||||
// 51-100
|
||||
minPerNum = 101
|
||||
maxPerNum = 1000
|
||||
} else if (perNumValue == '') {
|
||||
} else {
|
||||
// 全部
|
||||
minPerNum = 1
|
||||
maxPerNum = 1000
|
||||
} else {
|
||||
// 其余,符合规则即可
|
||||
// perNumValue * 10 - 9 ~ perNumValue * 10
|
||||
maxPerNum = parseInt(perNumValue) * 10
|
||||
minPerNum = maxPerNum - 9
|
||||
}
|
||||
|
||||
const param = {
|
||||
name: this.queryParam.meetingName, // 名称
|
||||
floor: this.queryParam.typeName, // 楼层名称
|
||||
|
Loading…
x
Reference in New Issue
Block a user