c85e0853
wuxw
业主详情开发完成
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<template>
<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>
|