fix:光芯大屏左上角时间
This commit is contained in:
parent
b7cc7913a6
commit
f90e9524f1
|
|
@ -3,7 +3,8 @@
|
|||
<header class="pageHeader">
|
||||
<div class="header_center_text">{{ bigScreenName }}</div>
|
||||
<div class="header_left">
|
||||
<span>{{ currentYear }}年{{ currentMonth }}月{{ currentDay }}日{{currentWeek}}</span>
|
||||
<!-- <span>{{ currentYear }}年{{ currentMonth }}月{{ currentDay }}日{{currentWeek}}</span> -->
|
||||
<span>{{ currentDate }}{{currentWeek}}</span>
|
||||
</div>
|
||||
<div class="header_right">
|
||||
<span>{{ currentTime }}</span>
|
||||
|
|
@ -617,6 +618,10 @@ export default {
|
|||
that.getTaskNumber();
|
||||
that.getArticles();
|
||||
that.getpurinrate();
|
||||
let nowDate = new Date();
|
||||
that.currentYear = nowDate.getFullYear();
|
||||
that.currentMonth = nowDate.getMonth() + 1;
|
||||
that.currentDay = nowDate.getDate();
|
||||
}, 300000);
|
||||
},
|
||||
//获取公告和视频
|
||||
|
|
|
|||
Loading…
Reference in New Issue