23 lines
712 B
Vue
23 lines
712 B
Vue
|
|
<template>
|
||
|
|
<div class="default-main">
|
||
|
|
<el-tabs v-model="activeName" type="border-card">
|
||
|
|
<el-tab-pane label="当前设备补招" name="0">
|
||
|
|
<current v-if="activeName == '0'" />
|
||
|
|
</el-tab-pane>
|
||
|
|
<el-tab-pane label="历史设备补招" name="1">
|
||
|
|
<history v-if="activeName == '1'" />
|
||
|
|
</el-tab-pane>
|
||
|
|
</el-tabs>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script lang='ts' setup>
|
||
|
|
import {ref,onMounted} from 'vue';
|
||
|
|
import current from './supplementaryRecruitment/current.vue'
|
||
|
|
import history from './supplementaryRecruitment/history.vue'
|
||
|
|
const activeName=ref('0')
|
||
|
|
onMounted(()=>{
|
||
|
|
console.log()
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
<style lang='scss' scoped>
|
||
|
|
</style>
|