| | |
| | | <template> |
| | | <div style="display: flex; flex-wrap: wrap; margin-bottom: 20px"> |
| | | <div class=wrap v-for="(value, key) in bedMap" :key="key"> |
| | | <div style="display: flex; flex-direction: column; align-items: center;"> |
| | | <div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px"> |
| | | <div class=roomwrap v-for="(value, key) in bedMap" :key="key"> |
| | | <RoomBedSelect :title="key" :bedList="value" v-model="curSel"/> |
| | | </div> |
| | | </div> |
| | | <el-button type="primary" @click="roomConfirm">确认</el-button> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |
| | | .wrap { |
| | | .roomwrap { |
| | | margin-right: 20px; |
| | | } |
| | | </style> |