123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- <template>
- <div>
- <CusModule title="上网电价">
- <div class="elec-index">
- <div class="panel-content" v-for="item, index in priceList" :key="index">
- <div class="image-container">
- <img :src="require(`@/assets/images/net/price${index + 1}.svg`)" alt="">
- </div>
- <div class="whitespace-pre">
- <span class="value">{{ item.value }}</span>
- <span class="unit">{{ item.unit }}</span>
- <div class="label">{{ item.name }}</div>
- </div>
- </div>
- </div>
- </CusModule>
- <CusModule class="module-top" title="上网收益">
- <BaseChart height="300px" width="100%" :option="barOptions"/>
- </CusModule>
- <CusModule class="module-top" title="今年购电费用">
- <BaseChart height="300px" width="100%" :option="lineOptions"/>
- </CusModule>
- </div>
- </template>
- <script>
- import CusModule from '../components/CusModule.vue';
- import BaseChart from '@/components/BaseChart/index.vue'
- import vueSeamlessScroll from 'vue-seamless-scroll'
- import {array2Map} from '@/utils';
- import * as echarts from 'echarts'
- import {mapState} from 'vuex';
- import {getPvPriceConfig} from "@/api/basecfg/elecPvPrice";
- import {pgSupplyMonthTotalPg, pgSupplyMonthTotalPv} from "@/api/screen";
- import {DateTool} from "@/utils/DateTool";
- export default {
- name: 'NetRight',
- data() {
- return {
- priceList: [
- {
- name: "余电上网电价",
- unit: "元/度",
- },
- {
- name: "脱硫煤电价",
- unit: "元/度",
- },
- {
- name: "国家补贴",
- unit: "元/度",
- },
- {
- name: "地方补贴",
- unit: "元/度",
- },
- ],
- barData: [],
- lineData: []
- }
- },
- components: {
- CusModule,
- BaseChart,
- vueSeamlessScroll
- },
- computed: {
- ...mapState('userState', ['areaType']),
- barOptions() {
- const xData = this.barData.map(item => item.xData)
- const line = this.barData.map(item => item.yData);
- return {
- tooltip: {
- trigger: 'item',
- },
- grid: {
- left: '5%',
- top: '10%',
- right: '5%',
- bottom: 0,
- containLabel: true
- },
- legend: {
- show: false,
- },
- xAxis: {
- data: xData,
- axisLabel: {
- margin: 10, //刻度标签与轴线之间的距离。
- },
- axisLine: {
- show: false //不显示x轴
- },
- axisTick: {
- show: false //不显示刻度
- },
- boundaryGap: true,
- splitLine: {
- show: false,
- }
- },
- yAxis: [{
- name: '万元',
- splitLine: {
- show: true,
- lineStyle: {
- color: '#334E5E'
- }
- },
- axisTick: {
- show: false
- },
- axisLine: {
- show: false
- },
- axisLabel: {
- textStyle: {
- color: '#888'
- },
- }
- }],
- series: [
- {//柱底圆片
- name: "",
- type: "pictorialBar",
- symbolSize: [20, 15],
- symbolOffset: [0, 5],
- z: 12,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: "rgba(89,211,255,1)"
- },
- {
- offset: 1,
- color: "rgba(23,237,194,1)"
- }
- ])
- }
- },
- data: line
- },
- //柱体
- {
- name: '',
- type: 'bar',
- barWidth: 20,
- barGap: '0%',
- itemStyle: {
- normal: {
- color: {
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- type: "linear",
- global: false,
- colorStops: [{//第一节下面
- offset: 0,
- color: "rgba(0,255,245,0.5)"
- }, {
- offset: 1,
- color: "#43bafe"
- }]
- }
- }
- },
- data: line
- },
- //柱顶圆片
- {
- name: "",
- type: "pictorialBar",
- symbolSize: [20, 15],
- symbolOffset: [0, -5],
- z: 12,
- symbolPosition: "end",
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1,
- [{
- offset: 0,
- color: "rgba(89,211,255,1)"
- },
- {
- offset: 1,
- color: "rgba(23,237,194,1)"
- }
- ],
- false
- ),
- }
- },
- data: line
- }
- ]
- };
- },
- lineOptions() {
- return {
- legend: {
- show: false,
- },
- grid: {
- top: '10%'
- },
- tooltip: {
- trigger: "axis",
- },
- yAxis: {
- name: "万元",
- splitLine: {
- show: true,
- lineStyle: {
- color: '#334E5E'
- }
- },
- },
- xAxis: {
- splitLine: {
- show: false,
- },
- data: this.lineData.map(item => item.xData),
- },
- series: [
- {
- type: 'line',
- name: "费用",
- smooth: true,
- lineStyle: {
- normal: {
- color: "#80DBE1", // 线条颜色
- },
- },
- itemStyle: {
- color: "#80DBE1",
- borderColor: "#fff",
- borderWidth: 3
- },
- areaStyle: { //区域填充样式
- normal: {
- //线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: "rgba(81, 139, 152,0.8)"
- },
- {
- offset: 1,
- color: "rgba(81, 139, 152, 0)"
- }
- ], false),
- shadowColor: 'rgba(81, 139, 152, 0.5)', //阴影颜色
- shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
- }
- },
- data: this.lineData.map(item => item.yData),
- },
- ],
- }
- }
- },
- watch: {
- areaType() {
- this.getNetData()
- }
- },
- mounted() {
- this.getNetData()
- this.timer && clearInterval(this.timer)
- this.timer = setInterval(() => {
- this.getNetData()
- }, 60000 * 3)
- },
- beforeDestroy() {
- this.timer && clearInterval(this.timer)
- },
- methods: {
- getNetData() {
- this.pgSupplyMonthTotalPv()
- this.pgSupplyMonthTotalPg()
- this.qryGwPriceConfig()
- },
- async qryGwPriceConfig() {
- const {data} = await getPvPriceConfig(1)
- if (!data) {
- return;
- }
- const [lessPrice, oriPrice, state, local] = this.priceList
- lessPrice.value = data.objPrice + data.stateSubsidy + data.localSubsidy
- oriPrice.value = data.objPrice
- state.value = data.stateSubsidy
- local.value = data.localSubsidy
- this.priceList = [lessPrice, oriPrice, state, local]
- },
- async pgSupplyMonthTotalPv() {
- const {data} = await pgSupplyMonthTotalPv({
- startRecTime: DateTool.nearYearStartDay(),
- endRecTime: DateTool.now(),
- areaCode: this.areaType,
- })
- if (!data) {
- return;
- }
- const month = DateTool.getMonthsOfYearAgo()
- const indexMap = array2Map(data, "startRecTime")
- this.barData = month.map(item => (
- {
- xData: item.substring(2),
- yData: indexMap[item] ? (indexMap[item].upElecEarn / 10000).toFixed(1) : 0
- }
- ))
- },
- async pgSupplyMonthTotalPg() {
- const thisThisYearStart = `${DateTool.now(DateTool.DateFormat.YYYY)}-01-01`
- const {data} = await pgSupplyMonthTotalPg({
- startRecTime: thisThisYearStart,
- endRecTime: DateTool.now(),
- areaCode: this.areaType,
- })
- if (!data) {
- return;
- }
- const month = DateTool.getMonthsOfYearAgo()
- const indexMap = array2Map(data, "startRecTime")
- this.lineData = month.map(item => (
- {
- xData: item.substring(2),
- yData: indexMap[item] ? (indexMap[item].useElecCost / 10000).toFixed(1) : 0
- }
- ))
- }
- }
- }
- </script>
- <style lang='scss' scoped>
- @import url("../index.scss");
- .elec-index {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding: 10px 0 0;
- .panel-content {
- margin-top: 12px;
- flex-basis: 48%;
- height: 75px;
- color: #B3E3E8;
- background: url('~@/assets/images/home/l2_item_bg.png') no-repeat;
- background-size: 100% 100%;
- display: flex;
- .whitespace-pre {
- margin-top: 15px;
- margin-left: 10px;
- span.value {
- font-size: 18px;
- font-weight: bold;
- }
- }
- .label {
- margin-top: 5px;
- font-size: 14px;
- }
- .image-container {
- width: 65px;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- height: 24px;
- margin-bottom: 5px;
- }
- }
- }
- }
- .equip {
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- .equip-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #1B4A64;
- color: #B3E3E8;
- border-radius: 4px;
- padding: 5px 13px;
- font-size: 14px;
- > div:first-of-type {
- span:first-of-type {
- font-size: 18px;
- font-weight: bold;
- }
- }
- }
- }
- .pie-chart {
- margin: 30px;
- height: 201px;
- background: url("~@/assets/images/device/l1-pie_bg.png") no-repeat;
- background-position: center;
- }
- .seamless-header {
- margin-top: 20px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 5px 10px;
- color: #7DBAFF;
- background: #1B4A64;
- font-size: 16px;
- > div:first-of-type,
- > div:last-of-type {
- flex-basis: 35%;
- }
- > div {
- text-align: center;
- }
- }
- .seamless-warp {
- overflow: hidden;
- height: 200px;
- .seamless-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 5px 0;
- &:nth-child(odd) {
- background: #000;
- }
- > div:first-of-type,
- > div:last-of-type {
- flex-basis: 38%;
- }
- > div {
- text-align: center;
- font-size: 13px;
- }
- }
- }
- </style>
|