2023-11-07 10:04:37 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
2023-11-10 16:07:21 +08:00
|
|
|
<OutSourced v-show="activeName=='OutSourced'" ref="outSourced" active-name="List"/>
|
2023-11-07 10:04:37 +08:00
|
|
|
<component :is="activeName"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import List from './components/list'
|
|
|
|
import Info from './components/info'
|
2023-11-10 16:07:21 +08:00
|
|
|
import OutSourced from '@/components/OutSourced/index'
|
2023-11-07 10:04:37 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
List: List,
|
2023-11-10 16:07:21 +08:00
|
|
|
OutSourced: OutSourced,
|
2023-11-07 10:04:37 +08:00
|
|
|
Info: Info
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2023-11-10 16:07:21 +08:00
|
|
|
activeName: 'OutSourced',
|
2023-11-07 10:04:37 +08:00
|
|
|
HIDDEN_ID: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|