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