mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
18 lines
395 B
Vue
18 lines
395 B
Vue
<template>
|
|
<admin-owner-detail-charge-machine-order ref="chargeMachineOrderComponent" />
|
|
</template>
|
|
|
|
<script>
|
|
import AdminOwnerDetailChargeMachineOrder from './adminOwnerDetailChargeMachineOrder'
|
|
|
|
export default {
|
|
components: {
|
|
AdminOwnerDetailChargeMachineOrder
|
|
},
|
|
methods: {
|
|
open(data) {
|
|
this.$refs.chargeMachineOrderComponent.handleSwitch(data)
|
|
}
|
|
}
|
|
}
|
|
</script> |