25 lines
385 B
Vue
25 lines
385 B
Vue
|
<style scoped>
|
||
|
.Banner {
|
||
|
width: 120%;
|
||
|
height: 400px;
|
||
|
margin: auto;
|
||
|
padding: auto;
|
||
|
left: -25%;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<n-flex style="margin-top: 10px" vertical justify="center">
|
||
|
<Header />
|
||
|
<Banner />
|
||
|
<Jobshow />
|
||
|
<Footer />
|
||
|
</n-flex>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
useHeadSafe({ title: "校园兼职信息" });
|
||
|
</script>
|