qa-regulatory-gwj-vue/src/views/xgf/licensed_server/index.vue

26 lines
496 B
Vue
Raw Normal View History

2023-11-07 10:04:37 +08:00
<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>