Files
apt-nl-new/src/components/time.vue
2023-10-19 14:11:09 +08:00

68 lines
1.7 KiB
Vue

<template>
<div class="data_box">
<div class="date-wraper">{{hours}}:{{minutes}}:{{seconds}}</div>
<div class="time-wraper">{{date}}</div>
</div>
</template>
<script>
export default {
name: 'jxTime',
data () {
return {
timer: null,
time: '',
hours: '',
minutes: '',
seconds: '',
date: '',
week: ''
}
},
mounted () {
this.timer = window.setInterval(this.updateTime, 1000)
},
methods: {
updateTime () {
let cd = new Date()
let year = cd.getFullYear()
let month = cd.getMonth() + 1 < 10 ? '0' + (cd.getMonth() + 1) : cd.getMonth() + 1
let date = cd.getDate() < 10 ? '0' + cd.getDate() : cd.getDate()
let hh = cd.getHours() < 10 ? '0' + cd.getHours() : cd.getHours()
let mm = cd.getMinutes() < 10 ? '0' + cd.getMinutes() : cd.getMinutes()
let ss = cd.getSeconds() < 10 ? '0' + cd.getSeconds() : cd.getSeconds()
var weekday = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
let myddy = new Date().getDay()
let week = weekday[myddy]
this.time = `${hh}:${mm}:${ss}`
this.hours = `${hh}`
this.minutes = `${mm}`
this.seconds = `${ss}`
this.date = `${year}${month}${date}`
this.week = `${week}`
}
},
beforeDestroy () {
this.$once('hook:beforeDestroy', () => {
clearInterval(this.timer)
})
}
}
</script>
<style lang="stylus" scoped>
@import '~@style/mixin'
.data_box
_fj(center,flex-end)
flex-direction column
height 77px
.date-wraper
width 130px
_font(34px, 36px, #B4C1D8,,right)
font-family Source Han Sans CN
.time-wraper
width 130px
_font(16px, 30px, #B4C1D8,,right)
font-family Source Han Sans CN
</style>