Blame view

src/components/aCommunity/aRoomDetailRepairDemo.vue 301 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
a2547628   wuxw   运营加入房屋详情页面
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    <a-room-detail-repair ref="repairComponent" />
  </template>
  
  <script>
  import ARoomDetailRepair from './aRoomDetailRepair'
  
  export default {
    components: {
      ARoomDetailRepair
    },
    methods: {
      open(data) {
        this.$refs.repairComponent.handleSwitch(data)
      }
    }
  }
  </script>