更换图片

main
jn517618 2 years ago
parent 01930a2268
commit f2d85be177
  1. BIN
      public/img/energySourcesProvince/electricity.png
  2. BIN
      public/img/energySourcesProvince/emissionAll.png
  3. BIN
      public/img/energySourcesProvince/intensity.png
  4. BIN
      public/img/energySourcesProvince/measure.png
  5. BIN
      public/img/energySourcesProvince/ringPercent.png
  6. BIN
      public/img/energySourcesProvince/statistics.png
  7. BIN
      public/img/energySourcesProvince/tendency.png
  8. BIN
      public/img/energySourcesProvince/togetherPercent.png
  9. 14
      src/views/energySources/component/load.vue

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 102 KiB

@ -4,7 +4,7 @@
<div class="tit-r">
<span style="color: #fff;">选择时间</span>
<el-date-picker size="mini" v-model="selectDate" type="date" placeholder="选择月" :prefix-icon="null"
style="width: 1.3rem;margin-right: 0.26rem;" format="yyyy-MM-dd" value-format="yyyy-MM-dd">
style="width: 1.3rem;margin-right: 0.26rem;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" @change="changeDate">
</el-date-picker>
单位kw·h
</div>
@ -67,6 +67,18 @@ export default {
}
},
methods: {
changeDate() {
this.$nextTick(() => {
if (this.radio) {
this.getWeekData()
} else {
this.getDayData()
}
})
},
//
getDayData() {
getDayElectricity({ manufacturerBrand: this.userInfo.dept_name, today: this.selectDate }).then(res => {

Loading…
Cancel
Save