25 lines
477 B
Vue
25 lines
477 B
Vue
|
<template>
|
||
|
<component :is="activeName" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import CorpInfoList from './components/corpInfoList'
|
||
|
import CorpInfoEdit from '../insert/components/corpInfoEdit'
|
||
|
export default {
|
||
|
components: {
|
||
|
CorpInfoList: CorpInfoList,
|
||
|
CorpInfoEdit: CorpInfoEdit
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
activeName: 'CorpInfoList',
|
||
|
CORPINFO_ID: '',
|
||
|
USERNAME: JSON.parse(sessionStorage.getItem('user')).USERNAME
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|