33 lines
614 B
Vue
33 lines
614 B
Vue
<template>
|
|
<div>
|
|
<CorpInfo v-show="activeName=='CorpInfo'" />
|
|
<List v-if="activeName=='highwork_list'" />
|
|
<Detail v-if="activeName=='Detail'"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/list'
|
|
import Detail from './components/detail'
|
|
import CorpInfo from "./components/corpInfo";
|
|
export default {
|
|
components: {CorpInfo,List,Detail},
|
|
data() {
|
|
return {
|
|
activeName: 'CorpInfo',
|
|
HIGHWORK_ID: ''
|
|
}
|
|
},
|
|
watch: {
|
|
activeName(val) {
|
|
if (val == 'highwork_list') {
|
|
this.$refs.list.getQuery()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|