generated from maochaoying/dreamworks-frontend-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
448 B
23 lines
448 B
<template>
|
|
<div class="recruit_container">
|
|
<SubNavigation title="招贤纳士" />
|
|
<div class="collapse_container">
|
|
<div class="collapse_header"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SubNavigation from 'cpns/SubNavigation'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.recruit_container {
|
|
padding-top: $sub-header-height;
|
|
.collapse_container {
|
|
.collapse_header {
|
|
background: #000;
|
|
}
|
|
}
|
|
}
|
|
</style>
|