26 lines
496 B
Vue
26 lines
496 B
Vue
<template>
|
|
<component :is="activeName" />
|
|
</template>
|
|
|
|
<script>
|
|
import CorpInfoList from './components/corpInfoList'
|
|
import CorpUserList from './components/corpUserList'
|
|
export default {
|
|
components: {
|
|
CorpInfoList: CorpInfoList,
|
|
CorpUserList: CorpUserList
|
|
},
|
|
data() {
|
|
return {
|
|
activeName: 'CorpInfoList',
|
|
// CORPINFO_ID: JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID
|
|
CORPINFO_ID: '',
|
|
USER_ID: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|