eight
2024-08-16 edcb7331b540441738258f900bedc337c9651f64
src/views/ecg/room/RoomLoginSelect.vue
@@ -1,10 +1,12 @@
<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">
@@ -41,7 +43,7 @@
</script>
<style scoped lang="scss">
.wrap {
.roomwrap {
  margin-right: 20px;
}
</style>