You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
873 B
Vue
53 lines
873 B
Vue
<template>
|
|
<div class="login-head">
|
|
<div class="head-title">
|
|
<image class="head-icon" src="/static/head-icon.png" />
|
|
<span>国家税务总局绍兴市越城税务局办税服务厅</span>
|
|
</div>
|
|
<div class="head-time">
|
|
<span>2025-08-11 星期一 10:25:25</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.login-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: $statusbar-height;
|
|
|
|
.head-title {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 6vh;
|
|
|
|
.head-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-left: 1vw;
|
|
}
|
|
|
|
span {
|
|
color: #fff;
|
|
font-size: 3vh;
|
|
font-weight: 800;
|
|
margin-left: 1vw;
|
|
}
|
|
}
|
|
|
|
.head-time {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 6vh;
|
|
|
|
span {
|
|
color: #fff;
|
|
font-size: 2vh;
|
|
margin-right: 1vw;
|
|
}
|
|
}
|
|
}
|
|
</style> |