This commit is contained in:
2024-07-12 10:42:06 +08:00
parent 97a5eb31e6
commit 151d934ade
4 changed files with 17 additions and 0 deletions

Binary file not shown.

View File

@@ -12,6 +12,7 @@
<div class="tiem_item seconds">{{seconds}}</div>
</div>
</div>
<div class="exit_btn iconfont" @click="back">&#xe85b;</div>
<slot></slot>
</header>
</template>
@@ -60,6 +61,9 @@ export default {
this.seconds = `${ss}`
this.date = `${year}${month}${date}`
this.week = `${week}`
},
back () {
this.$router.push('/setup')
}
}
}
@@ -97,4 +101,17 @@ header
.colon
float left
_font(.32rem, .37rem, #fff,,)
.exit_btn
position absolute
left 2%
top 16.5%
z-index 100
height .3rem
width .3rem
line-height .3rem
font-size .3rem
color #AECAF5
text-align: center;
cursor: pointer;
border-radius: 50%;
</style>