|
@@ -1,11 +1,261 @@
|
|
|
<template>
|
|
|
- <div>PR分析</div>
|
|
|
+ <div class="pr-wrapper">
|
|
|
+ <div class="pr-search">
|
|
|
+ <el-select
|
|
|
+ size="mini"
|
|
|
+ v-model="station"
|
|
|
+ placeholder="请选择"
|
|
|
+ style="margin-left: 15px"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in stationOptions"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.aname"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-date-picker
|
|
|
+ size="mini"
|
|
|
+ type="month"
|
|
|
+ v-model="month"
|
|
|
+ value-format="YYYY-MM"
|
|
|
+ placeholder="请选择"
|
|
|
+ style="margin-left: 15px"
|
|
|
+ popper-class="date-select"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ <el-button round size="mini" class="searchColor" @click="getDatas"
|
|
|
+ >搜索</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <div class="pr-content">
|
|
|
+ <div class="leftContent">
|
|
|
+ <span>{{ selectValue }}</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="pr-body">
|
|
|
+ <div class="table-wrapper">
|
|
|
+ <el-table
|
|
|
+ :data="tableData"
|
|
|
+ width="100%"
|
|
|
+ stripe
|
|
|
+ @sort-change="handleSort"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ v-for="(item, index) in tableHeaders"
|
|
|
+ :key="index"
|
|
|
+ align="center"
|
|
|
+ show-overflow-tooltip
|
|
|
+ :prop="item.prop"
|
|
|
+ :label="item.label"
|
|
|
+ :width="item.width"
|
|
|
+ :sortable="item.prop != 'prpm' && item.prop != 'wtid'"
|
|
|
+ >
|
|
|
+ <template #default="{ row }">
|
|
|
+ <div class="pr-table-cell" v-if="item.label == '增长率(%)'">
|
|
|
+ <span>{{
|
|
|
+ row[item.prop] || row[item.prop] == 0
|
|
|
+ ? row[item.prop]
|
|
|
+ : "--"
|
|
|
+ }}</span>
|
|
|
+ <span v-if="row[item.prop] && row[item.prop] != 0">
|
|
|
+ <i
|
|
|
+ class="svg-icon svg-icon-sm svg-icon-green"
|
|
|
+ v-if="row[item.prop] < 0"
|
|
|
+ >
|
|
|
+ <svgIcon svgid="svg-arrow-down"></svgIcon>
|
|
|
+ </i>
|
|
|
+ <i
|
|
|
+ class="svg-icon svg-icon-sm svg-icon-red"
|
|
|
+ v-if="row[item.prop] > 0"
|
|
|
+ >
|
|
|
+ <svgIcon svgid="svg-arrow-up"></svgIcon>
|
|
|
+ </i>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ {{
|
|
|
+ row[item.prop] || row[item.prop] == 0
|
|
|
+ ? row[item.prop]
|
|
|
+ : "--"
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column width="800"></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <div class="chart-wrapper" :style="{ height: height }">
|
|
|
+ <barCharts height="100%" width="100%" :bardata="bardata" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import dayjs from "dayjs";
|
|
|
+import barCharts from "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse/components/barCharts.vue";
|
|
|
+import { getPrAnalysis } from "@/api/monthlyPerformanceAnalysis.js";
|
|
|
+import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
|
|
|
+import svgIcon from "@/components/coms/icon/svg-icon.vue";
|
|
|
export default {
|
|
|
name: "PrAnalyse", //PR分析
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ selectValue: "PR分析",
|
|
|
+ station: "",
|
|
|
+ stationOptions: [],
|
|
|
+ month: dayjs().format("YYYY-MM"),
|
|
|
+ tableHeaders: [
|
|
|
+ { prop: "prpm", label: "排名", width: 80 },
|
|
|
+ { prop: "wtid", label: "设备" },
|
|
|
+ { prop: "pr", label: "本期" },
|
|
|
+ { prop: "prhb", label: "上月" },
|
|
|
+ { prop: "prhbzzl", label: "增长率(%)" },
|
|
|
+ { prop: "prtb", label: "同期" },
|
|
|
+ { prop: "prtbzzl", label: "增长率(%)" },
|
|
|
+ ],
|
|
|
+ tableData: [],
|
|
|
+ bardata: {},
|
|
|
+ height: "",
|
|
|
+ target: "",
|
|
|
+ sort: "",
|
|
|
+ };
|
|
|
+ },
|
|
|
+ components: { barCharts, svgIcon },
|
|
|
+ created() {
|
|
|
+ this.getStation();
|
|
|
+ if (this.tableData.length > 22) {
|
|
|
+ this.height = this.tableData.length * 37 + 53 + "px";
|
|
|
+ } else {
|
|
|
+ this.height = 23 * 38 + 80 + "px";
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getStation() {
|
|
|
+ GetStationByCompany({
|
|
|
+ companyids: 0,
|
|
|
+ type: -2,
|
|
|
+ }).then(({ data: res, code }) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.stationOptions = res.data;
|
|
|
+ this.station = this.stationOptions[0].id;
|
|
|
+ this.getDatas();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getDatas() {
|
|
|
+ getPrAnalysis({
|
|
|
+ wpId: this.station,
|
|
|
+ month: this.month,
|
|
|
+ target: this.target,
|
|
|
+ sort: this.sort,
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.tableData = res.data.map((i) => {
|
|
|
+ return {
|
|
|
+ ...i,
|
|
|
+ prhbzzl: i.prhbzzl ? i.prhbzzl.toFixed(2) : i.prhbzzl,
|
|
|
+ prtbzzl: i.prtbzzl ? i.prtbzzl.toFixed(2) : i.prtbzzl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ this.bardata = {
|
|
|
+ name: this.tableData.map((i) => i.wtid),
|
|
|
+ lengend: "PR",
|
|
|
+ data: this.tableData.map((i) => i.pr),
|
|
|
+ };
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleSort({ column, prop, order }) {
|
|
|
+ switch (prop) {
|
|
|
+ case "pr":
|
|
|
+ this.target = "prpm";
|
|
|
+ break;
|
|
|
+ case "prhb":
|
|
|
+ this.target = "prhbpm";
|
|
|
+ break;
|
|
|
+ case "prhbzzl":
|
|
|
+ this.target = "prhbzzlpm";
|
|
|
+ break;
|
|
|
+ case "prtb":
|
|
|
+ this.target = "prtbpm";
|
|
|
+ break;
|
|
|
+ case "prtbzzl":
|
|
|
+ this.target = "prtbzzlpm";
|
|
|
+ break;
|
|
|
+ case null:
|
|
|
+ this.target = "";
|
|
|
+ }
|
|
|
+ this.sort = order == "ascending" ? 1 : order == "descending" ? 2 : "";
|
|
|
+ this.getDatas();
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style lang="less" scoped></style>
|
|
|
+<style lang="less" scoped>
|
|
|
+.pr-wrapper {
|
|
|
+ height: 100%;
|
|
|
+ padding: 0 20px;
|
|
|
+ .pr-search {
|
|
|
+ padding: 10px 0;
|
|
|
+ button {
|
|
|
+ margin-left: 10px;
|
|
|
+ background: rgba(67, 81, 107, 0.3);
|
|
|
+ border: 1px solid #274934;
|
|
|
+ color: #b3b3b3;
|
|
|
+ }
|
|
|
+
|
|
|
+ .searchColor {
|
|
|
+ background-color: rgba(5, 187, 76, 0.2);
|
|
|
+ border: 1px solid #3b6c53;
|
|
|
+ color: #b3b3b3;
|
|
|
+ font-size: 14px;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba(5, 187, 76, 0.5);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pr-content {
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ width: 100%;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ .leftContent {
|
|
|
+ width: 242px;
|
|
|
+ height: 45px;
|
|
|
+ line-height: 45px;
|
|
|
+ background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
|
|
|
+ span {
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #05bb4c;
|
|
|
+ margin-left: 25px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pr-body {
|
|
|
+ height: calc(100% - 36px);
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ position: relative;
|
|
|
+ overflow: auto;
|
|
|
+ .table-wrapper {
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .chart-wrapper {
|
|
|
+ width: 800px;
|
|
|
+ height: 100%;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|