...
|
...
|
@@ -83,7 +83,7 @@ onMounted(() => { |
83
|
83
|
"4": '星期四',
|
84
|
84
|
"5": '星期五',
|
85
|
85
|
"6": '星期六',
|
86
|
|
- }
|
|
86
|
+ } as any
|
87
|
87
|
const datetime = new Date()
|
88
|
88
|
const year = datetime.getFullYear()
|
89
|
89
|
const month = datetime.getMonth() + 1 < 10 ? '0' + (datetime.getMonth() + 1) : datetime.getMonth() + 1
|
...
|
...
|
@@ -131,7 +131,7 @@ onUnmounted(() => { |
131
|
131
|
}
|
132
|
132
|
|
133
|
133
|
.go-n-grid {
|
134
|
|
- background: url(@/assets/images/chart/headbackground/bg_top.png) center no-repeat;
|
|
134
|
+ background: url(@/assets/external/headbackground/bg_top.png) center no-repeat;
|
135
|
135
|
background-size: 100% 100%;
|
136
|
136
|
text-align: center;
|
137
|
137
|
font-size: 36px;
|
...
|
...
|
|