|
@@ -50,7 +50,9 @@
|
|
:prop="item.prop"
|
|
:prop="item.prop"
|
|
:label="item.label"
|
|
:label="item.label"
|
|
:width="item.width"
|
|
:width="item.width"
|
|
- :sortable="item.prop != 'prpm' && item.prop != 'wtid'"
|
|
|
|
|
|
+ :sortable="
|
|
|
|
+ item.prop != 'prpm' && item.prop != 'wtid' ? 'custom' : false
|
|
|
|
+ "
|
|
>
|
|
>
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
<div class="pr-table-cell" v-if="item.label == '增长率(%)'">
|
|
<div class="pr-table-cell" v-if="item.label == '增长率(%)'">
|
|
@@ -61,13 +63,13 @@
|
|
}}</span>
|
|
}}</span>
|
|
<span v-if="row[item.prop] && row[item.prop] != 0">
|
|
<span v-if="row[item.prop] && row[item.prop] != 0">
|
|
<i
|
|
<i
|
|
- class="svg-icon svg-icon-sm svg-icon-green"
|
|
|
|
|
|
+ class="svg-icon svg-icon-sm svg-icon-skyBlue"
|
|
v-if="row[item.prop] < 0"
|
|
v-if="row[item.prop] < 0"
|
|
>
|
|
>
|
|
<svgIcon svgid="svg-arrow-down"></svgIcon>
|
|
<svgIcon svgid="svg-arrow-down"></svgIcon>
|
|
</i>
|
|
</i>
|
|
<i
|
|
<i
|
|
- class="svg-icon svg-icon-sm svg-icon-red"
|
|
|
|
|
|
+ class="svg-icon svg-icon-sm svg-icon-orange1"
|
|
v-if="row[item.prop] > 0"
|
|
v-if="row[item.prop] > 0"
|
|
>
|
|
>
|
|
<svgIcon svgid="svg-arrow-up"></svgIcon>
|
|
<svgIcon svgid="svg-arrow-up"></svgIcon>
|
|
@@ -86,8 +88,15 @@
|
|
<el-table-column width="800"></el-table-column>
|
|
<el-table-column width="800"></el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
- <div class="chart-wrapper" :style="{ height: height }">
|
|
|
|
- <barCharts height="100%" width="100%" :bardata="bardata" />
|
|
|
|
|
|
+ <div class="chart-wrapper">
|
|
|
|
+ <div :style="{ height: height }">
|
|
|
|
+ <barCharts
|
|
|
|
+ v-if="showDisplay"
|
|
|
|
+ height="100%"
|
|
|
|
+ width="100%"
|
|
|
|
+ :bardata="bardata"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -119,19 +128,15 @@ export default {
|
|
],
|
|
],
|
|
tableData: [],
|
|
tableData: [],
|
|
bardata: {},
|
|
bardata: {},
|
|
- height: "",
|
|
|
|
|
|
+ height: "880px",
|
|
target: "",
|
|
target: "",
|
|
sort: "",
|
|
sort: "",
|
|
|
|
+ showDisplay: true,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
components: { barCharts, svgIcon },
|
|
components: { barCharts, svgIcon },
|
|
created() {
|
|
created() {
|
|
this.getStation();
|
|
this.getStation();
|
|
- if (this.tableData.length > 22) {
|
|
|
|
- this.height = this.tableData.length * 37 + 53 + "px";
|
|
|
|
- } else {
|
|
|
|
- this.height = 23 * 38 + 80 + "px";
|
|
|
|
- }
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
getStation() {
|
|
getStation() {
|
|
@@ -147,13 +152,30 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
getDatas() {
|
|
getDatas() {
|
|
|
|
+ this.BASE.showLoading();
|
|
getPrAnalysis({
|
|
getPrAnalysis({
|
|
wpId: this.station,
|
|
wpId: this.station,
|
|
month: this.month,
|
|
month: this.month,
|
|
target: this.target,
|
|
target: this.target,
|
|
sort: this.sort,
|
|
sort: this.sort,
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
|
|
+ this.BASE.closeLoading();
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
|
+ this.bardata = {
|
|
|
|
+ name: res.data.map((i) => i.wtid),
|
|
|
|
+ lengend: "PR",
|
|
|
|
+ data: res.data.map((i) => i.pr),
|
|
|
|
+ };
|
|
|
|
+ if (res.data.length > 22) {
|
|
|
|
+ this.height = res.data.length * 37 + 53 + "px";
|
|
|
|
+ } else {
|
|
|
|
+ this.height = 23 * 38 + 80 + "px";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.showDisplay = false;
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.showDisplay = true;
|
|
|
|
+ }, 5);
|
|
this.tableData = res.data.map((i) => {
|
|
this.tableData = res.data.map((i) => {
|
|
return {
|
|
return {
|
|
...i,
|
|
...i,
|
|
@@ -161,11 +183,6 @@ export default {
|
|
prtbzzl: i.prtbzzl ? i.prtbzzl.toFixed(2) : i.prtbzzl,
|
|
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),
|
|
|
|
- };
|
|
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -241,7 +258,6 @@ export default {
|
|
.pr-body {
|
|
.pr-body {
|
|
height: calc(100% - 36px);
|
|
height: calc(100% - 36px);
|
|
width: 100%;
|
|
width: 100%;
|
|
-
|
|
|
|
position: relative;
|
|
position: relative;
|
|
overflow: auto;
|
|
overflow: auto;
|
|
.table-wrapper {
|
|
.table-wrapper {
|