Blame view

src/components/owner/ownerDetailCarDemo.vue 471 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
c85e0853   wuxw   业主详情开发完成
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    <owner-detail-car ref="ownerDetailCar" />
  </template>
  
  <script>
  import OwnerDetailCar from '@/components/owner/ownerDetailCar'
  
  export default {
    components: {
      OwnerDetailCar
    },
    methods: {
      open(ownerId, ownerName) {
        this.$refs.ownerDetailCar.ownerDetailCarInfo.ownerId = ownerId
        this.$refs.ownerDetailCar.ownerDetailCarInfo.ownerName = ownerName
        this.$refs.ownerDetailCar._loadOwnerDetailCarData(1, 10)
      }
    }
  }
  </script>