Browse Source

驾驶舱

pull/16/head
‘937886381’ 4 months ago
parent
commit
ad8e6972fb
4 changed files with 13 additions and 4 deletions
  1. +1
    -1
      .env.dev
  2. +1
    -0
      src/views/copilot/efficiency/components/sub/chip/ChipRateItem.vue
  3. +6
    -2
      src/views/copilot/energy/components/sub/monitor/MonitorItem.vue
  4. +5
    -1
      src/views/dashboard/components/Header.vue

+ 1
- 1
.env.dev View File

@@ -1,7 +1,7 @@
###
# @Author: zhp
# @Date: 2024-04-28 13:42:51
# @LastEditTime: 2024-05-11 08:52:30
# @LastEditTime: 2024-05-13 13:30:20
# @LastEditors: zhp
# @Description:
###


+ 1
- 0
src/views/copilot/efficiency/components/sub/chip/ChipRateItem.vue View File

@@ -159,6 +159,7 @@ export default {
}

.chart {
width: 390px;
align-self: stretch;
height: 280px;
}


+ 6
- 2
src/views/copilot/energy/components/sub/monitor/MonitorItem.vue View File

@@ -10,10 +10,12 @@
<div class="cities">
<CopilotButtons :options="cities" @update:active="handleCityUpdate" />
</div>
<div class="chart" ref="chart"></div>
<div style="padding: 0 30px;width: 90%;">
<div class="chart" ref="chart"></div>
</div>
<div class="legend" v-if="1">
<div class="legend-item" v-for="(lgd,index) in legendList" :key="lgd.name">
<div >
<div>
<span :style="'backgroundColor:' + colors[index%5]" class="legend-item__chart"></span>
<span :style="'color:' + colors[index%5]" class="legend-item__label">{{ lgd.name }}</span>
</div>
@@ -108,6 +110,8 @@ export default {
}

.chart {
margin-left: 5%;
width: 290px;
align-self: stretch;
height: 280px;
}


+ 5
- 1
src/views/dashboard/components/Header.vue View File

@@ -25,6 +25,7 @@ export default {
props: {},
data() {
return {
weatherInterval:null,
isFullscreen: false,
times: null,
weather:'',
@@ -43,6 +44,9 @@ export default {
;this.getTimes()
this.getWeather()
},
destroyed() {
clearInterval(this.weatherInterval)
},
methods: {
getTimes() {
setInterval(this.getTimesInterval, 1000);
@@ -84,7 +88,7 @@ export default {
day
},
async getWeather() {
setInterval(() => {
this.weatherInterval = setInterval(() => {
fetch(`https://restapi.amap.com/v3/weather/weatherInfo?key=a20a2093715deb9bd68e423c34a2ac3c&city=110108`, {
method: 'get',
extensions: 'base',


Loading…
Cancel
Save