mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-08-08 08:22:46 +08:00
加入数据量为0的提示
This commit is contained in:
parent
93d526d6d2
commit
72d8a4352e
@ -138,6 +138,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<template v-if='Object.keys(roomList).length === 0'>
|
||||
<a-empty />
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
<RoomOrder-modal ref='modal' @ok='handleOk' />
|
||||
@ -185,7 +188,9 @@ export default {
|
||||
capacityList: [],
|
||||
shapeList: [],
|
||||
typeList: [],
|
||||
roomList: [],
|
||||
roomList: {
|
||||
'1F': [] // 给个空值,避免进来就提示没数据
|
||||
},
|
||||
itemList: [],
|
||||
showDepForm: true,
|
||||
depId: '',
|
||||
@ -381,7 +386,7 @@ export default {
|
||||
roomArr[eachObj['floorId']]['list'].push(eachObj)
|
||||
}
|
||||
this.roomList = roomArr
|
||||
console.log(this.roomList)
|
||||
console.log('room', this.roomList)
|
||||
})
|
||||
},
|
||||
getDepInfo(e) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user