1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template> <owner-detail-repair ref="ownerDetailRepair" /> </template> <script> import OwnerDetailRepair from './ownerDetailRepair' export default { components: { OwnerDetailRepair }, methods: { open(ownerId) { this.$refs.ownerDetailRepair.ownerDetailRepairInfo.ownerId = ownerId this.$refs.ownerDetailRepair._loadOwnerDetailRepairData(1, 10) } } } </script>