AIzhushou-screen/src/views/header.vue

107 lines
2.1 KiB
Vue
Raw Normal View History

2024-05-22 08:44:08 +08:00
<script setup lang="ts">
import { testGet } from "@/api";
const test = () => {
testGet().then((res: any) => {
console.log("test", res);
})
};
const returnHome = () => {
history.go(-1)
// window.location.href = 'http://nclg.yx.zheke.com/#/login';
};
</script>
<template>
2024-05-23 15:47:12 +08:00
<div class="d-flex">
<div class="top-left">
2024-05-22 08:44:08 +08:00
<div class="title">
2024-05-22 09:32:42 +08:00
<span class="title-text" @click="test()">新生报道情况</span>
2024-05-22 08:44:08 +08:00
<span style="color: yellow;" @click="returnHome()">返回</span>
</div>
2024-05-23 15:47:12 +08:00
<div class="en-title">
<div class="en-line"></div>
<span>New student registration status</span>
</div>
</div>
<div class="change-time">
<div class="change-year">切换年份</div>
<div class="change-year">切换月份</div>
2024-05-22 08:44:08 +08:00
</div>
</div>
</template>
<style scoped lang="scss">
2024-05-23 15:47:12 +08:00
.d-flex {
width: 100%;
display: flex;
justify-content: space-between;
z-index: 999;
2024-05-22 08:44:08 +08:00
height: 60px;
position: relative;
margin-bottom: 4px;
}
2024-05-23 15:47:12 +08:00
.top-left{
display: flex;
}
2024-05-22 08:44:08 +08:00
.title {
2024-05-23 15:47:12 +08:00
// position: relative;
width: 300px;
text-align: left;
// color: transparent;
2024-05-22 08:44:08 +08:00
height: 60px;
line-height: 46px;
.title-text {
2024-05-22 10:52:34 +08:00
font-family: 'YouSheBiaoTiHei';
2024-05-22 08:44:08 +08:00
font-size: 38px;
2024-05-22 10:52:34 +08:00
font-weight: 400;
2024-05-22 08:44:08 +08:00
letter-spacing: 6px;
width: 100%;
2024-05-22 09:54:45 +08:00
color: #ECEDEE;
2024-05-23 15:47:12 +08:00
}
}
.en-title {
width: 300px;
height: 40px;
font-family: 'YouSheBiaoTiHei';
font-weight: 400;
font-size: 14px;
color: #ADC0DE;
opacity: 0.2;
// line-height: 40px;
padding-top: 10px;
text-align: center;
.en-line{
width: 80%;
height: 2px;
background-color: #ADC0DE;
margin-left: 30px;
}
}
.change-time {
// position: relative;
// float: right;
width: 300px;
height: 60px;
display: flex;
justify-content: space-between;
font-family: 'YouSheBiaoTiHei';
font-size: 18px;
.change-year {
width: 125px;
height: 35px;
line-height: 30px;
text-align: center;
cursor: pointer;
background-image: url("@/assets/img/zheke/top_change.png");
background-size: cover;
background-position: center center;
2024-05-22 08:44:08 +08:00
}
}
</style>