mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 00:20:01 +08:00
19 lines
404 B
Vue
19 lines
404 B
Vue
<template>
|
|
<owner-detail-app-user ref="ownerDetailAppUser" />
|
|
</template>
|
|
|
|
<script>
|
|
import OwnerDetailAppUser from './ownerDetailAppUser'
|
|
|
|
export default {
|
|
components: {
|
|
OwnerDetailAppUser
|
|
},
|
|
methods: {
|
|
open(ownerId) {
|
|
this.$refs.ownerDetailAppUser.ownerDetailAppUserInfo.ownerId = ownerId
|
|
this.$refs.ownerDetailAppUser._loadOwnerDetailAppUserData(1, 10)
|
|
}
|
|
}
|
|
}
|
|
</script> |