qa-regulatory-gwj-vue/src/views/xgf/personStrucManage/basicInfo.vue

23 lines
298 B
Vue

<template>
<component :is="activeName" />
</template>
<script>
import List from './components/list'
export default {
components: {
List: List
},
data() {
return {
activeName: 'List',
SUPERVISE_CORPINFO_ID: ''
}
}
}
</script>
<style scoped lang="scss">
</style>