c85e0853
wuxw
业主详情开发完成
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<template>
<owner-detail-contract ref="ownerDetailContract" />
</template>
<script>
import OwnerDetailContract from './ownerDetailContract'
export default {
components: {
OwnerDetailContract
},
methods: {
open(ownerId) {
this.$refs.ownerDetailContract.ownerDetailContractInfo.ownerId = ownerId
this.$refs.ownerDetailContract._loadOwnerDetailContractData(1, 10)
}
}
}
</script>
|