|
@@ -4,7 +4,7 @@
|
|
|
<div style="width: 330px"></div>
|
|
|
<div style="width: 330px" class="time-style">{{nowTime}}</div>
|
|
|
</div>
|
|
|
- <fullScreen ref="fullRef" class="inline-16" domId="fullScreen" v-show="false"></fullScreen>
|
|
|
+ <fullScreen ref="fullRef" class="inline-16" domId="fullScreen" v-show="false" @backFull="backFull"></fullScreen>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -67,6 +67,9 @@ export default {
|
|
|
// 将获取的时间信息赋值给nowTime
|
|
|
this.nowTime = `${year}-${mounth}-${day} ${weekArr[week]} ${hours}:${minutes}:${seconds}`;
|
|
|
}, 1000); // 每隔一秒更新时间
|
|
|
+ },
|
|
|
+ backFull(){
|
|
|
+ this.$router.push('/message')
|
|
|
}
|
|
|
},
|
|
|
created() {
|