|
@@ -8,7 +8,9 @@
|
|
|
:class="{ light: col.is_light }"
|
|
|
:style="{ width: col.width }"
|
|
|
@click="onSort(col)"
|
|
|
- >{{ col.name }}</th>
|
|
|
+ >
|
|
|
+ {{ col.name }}
|
|
|
+ </th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<el-scrollbar>
|
|
@@ -18,7 +20,11 @@
|
|
|
v-for="(col, i) of data.column"
|
|
|
:key="i"
|
|
|
:style="{ width: col.width }"
|
|
|
- :class="{ light: hoverRow == row || hoverCol == col, num: col.is_num, 'always-light': col.is_light || row.is_light }"
|
|
|
+ :class="{
|
|
|
+ light: hoverRow == row || hoverCol == col,
|
|
|
+ num: col.is_num,
|
|
|
+ 'always-light': col.is_light || row.is_light,
|
|
|
+ }"
|
|
|
@mouseenter="hover(row, col)"
|
|
|
@mouseleave="leave()"
|
|
|
>
|
|
@@ -67,30 +73,30 @@ export default {
|
|
|
// hover 样式
|
|
|
showHover: {
|
|
|
type: Boolean,
|
|
|
- default: true
|
|
|
+ default: true,
|
|
|
},
|
|
|
// 列高亮
|
|
|
showColHover: {
|
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
+ default: false,
|
|
|
},
|
|
|
canScroll: {
|
|
|
type: Boolean,
|
|
|
- default: true
|
|
|
+ default: true,
|
|
|
},
|
|
|
pageSize: {
|
|
|
type: Number,
|
|
|
- default: 0
|
|
|
+ default: 0,
|
|
|
},
|
|
|
height: {
|
|
|
type: String,
|
|
|
- default: ""
|
|
|
- }
|
|
|
+ default: "",
|
|
|
+ },
|
|
|
},
|
|
|
// 自定义事件
|
|
|
emits: {
|
|
|
// 分页事件
|
|
|
- onPagging: null
|
|
|
+ onPagging: null,
|
|
|
},
|
|
|
// 数据
|
|
|
data() {
|
|
@@ -104,7 +110,7 @@ export default {
|
|
|
dialogShow: false,
|
|
|
dialogTitle: "",
|
|
|
dialogData: {},
|
|
|
- myChart : null
|
|
|
+ myChart: null,
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -124,7 +130,7 @@ export default {
|
|
|
if (a[that.sortCol] < b[that.sortCol]) return rev * -1;
|
|
|
return 0;
|
|
|
});
|
|
|
- return data;
|
|
|
+ return data;
|
|
|
}
|
|
|
},
|
|
|
pageable() {
|
|
@@ -141,7 +147,7 @@ export default {
|
|
|
endRow() {
|
|
|
if (this.pageable) return this.currentPage * this.pageSize;
|
|
|
else return this.data.data.length;
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
// 函数
|
|
|
methods: {
|
|
@@ -156,50 +162,59 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
onClick(col, row) {
|
|
|
+ const curIndex = row.curIndex;
|
|
|
this.clearChart();
|
|
|
let subUrl = "";
|
|
|
let data = {};
|
|
|
- let method = "POST";
|
|
|
- if ("sjbz" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjax";
|
|
|
- data["type"] = "sjbz";
|
|
|
- } else if ("sjzy" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjax";
|
|
|
- data["type"] = "sjzy";
|
|
|
- } else if ("zybz" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjax";
|
|
|
- data["type"] = "zybz";
|
|
|
- } else if ("hb" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjaxhb";
|
|
|
- data["type"] = "hb";
|
|
|
- method = "GET";
|
|
|
- } else if ("tb" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjaxtb";
|
|
|
- data["type"] = "tb";
|
|
|
- method = "GET";
|
|
|
- } else if ("bbgfj" == col.field) {
|
|
|
- subUrl = "/leaderboard/curveMonthchatAjaxbg";
|
|
|
- data["type"] = "bg";
|
|
|
- method = "GET";
|
|
|
+ let method = "GET";
|
|
|
+ if ("deviationRate2" == col.field) {
|
|
|
+ data.type = "sjbz";
|
|
|
+ } else if ("deviationRate1" == col.field) {
|
|
|
+ data.type = "sjzy";
|
|
|
+ } else if ("deviationRate3" == col.field) {
|
|
|
+ data.type = "zybz";
|
|
|
+ } else if ("monthDeviationRate" == col.field) {
|
|
|
+ data.type = "hb";
|
|
|
+ } else if ("yearDeviationRate" == col.field) {
|
|
|
+ data.type = "tb";
|
|
|
+ } else if ("standardDeviationRate" == col.field) {
|
|
|
+ data.type = "bg";
|
|
|
} else {
|
|
|
return 0;
|
|
|
}
|
|
|
+
|
|
|
+ if (curIndex) {
|
|
|
+ if (data.type.length < 2) {
|
|
|
+ subUrl = "/leaderboard/getCurvechatAjax";
|
|
|
+ } else {
|
|
|
+ subUrl = "/leaderboard/curvechatAjaxhb";
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (data.type.length < 2) {
|
|
|
+ subUrl = "/leaderboard/curveMonthchatAjax";
|
|
|
+ } else {
|
|
|
+ subUrl = "/leaderboard/curveMonthchatAjaxtb";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
this.dialogShow = true;
|
|
|
this.dialogTitle = "曲线偏差率排行";
|
|
|
- const date = new Date();
|
|
|
- let year = date.getFullYear();
|
|
|
- let month = date.getMonth() + 1;
|
|
|
- let pdate = this.$parent.date.split("-");
|
|
|
- if (pdate && pdate.length > 1) {
|
|
|
- data["year"] = pdate[0];
|
|
|
- data["month"] = pdate[1];
|
|
|
+
|
|
|
+ if (curIndex) {
|
|
|
+ data.recorddate = row.recordDate;
|
|
|
+ } else {
|
|
|
+ data.year = row.year;
|
|
|
+ data.month = row.month;
|
|
|
}
|
|
|
- data["wtId"] = row.fj;
|
|
|
+
|
|
|
+ data["wtId"] = row.windturbineId;
|
|
|
+
|
|
|
let that = this;
|
|
|
that.API.requestData({
|
|
|
- method: method,
|
|
|
- subUrl: subUrl,
|
|
|
- data: data,
|
|
|
+ baseURL: process.env.VUE_APP_NEW_WISDOM,
|
|
|
+ method,
|
|
|
+ subUrl,
|
|
|
+ data,
|
|
|
success(res) {
|
|
|
if (res.code === 200) {
|
|
|
const linedata1 = [];
|
|
@@ -214,12 +229,12 @@ export default {
|
|
|
that.dialogTitle = "曲线偏差率排行";
|
|
|
that.initChart(linedata1, linedata2, names);
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
});
|
|
|
},
|
|
|
- clearChart(){
|
|
|
- // echarts.init(document.getElementById("chartDiv"));
|
|
|
- // TODO 未实现 点开后先清空曲线。mychart 不能定义为全局变量。Echarts bug
|
|
|
+ clearChart() {
|
|
|
+ const chartDom = document.getElementById("chartDiv");
|
|
|
+ chartDom && chartDom.removeAttribute("_echarts_instance_");
|
|
|
},
|
|
|
initChart(data1, data2, names) {
|
|
|
let that = this;
|
|
@@ -227,7 +242,7 @@ export default {
|
|
|
let option = {
|
|
|
color: ["#05bb4c", "#4b55ae"],
|
|
|
tooltip: {
|
|
|
- trigger: "axis"
|
|
|
+ trigger: "axis",
|
|
|
},
|
|
|
legend: {
|
|
|
show: true,
|
|
@@ -238,14 +253,14 @@ export default {
|
|
|
inactiveColor: "#606769",
|
|
|
textStyle: {
|
|
|
color: "#B3BDC0",
|
|
|
- fontSize: 12
|
|
|
- }
|
|
|
+ fontSize: 12,
|
|
|
+ },
|
|
|
},
|
|
|
grid: {
|
|
|
top: 32,
|
|
|
left: 40,
|
|
|
right: 40,
|
|
|
- bottom: 24
|
|
|
+ bottom: 24,
|
|
|
},
|
|
|
xAxis: [
|
|
|
{
|
|
@@ -255,11 +270,11 @@ export default {
|
|
|
formatter: "{value}",
|
|
|
fontSize: 9.35925925925926,
|
|
|
textStyle: {
|
|
|
- color: "#606769"
|
|
|
- }
|
|
|
+ color: "#606769",
|
|
|
+ },
|
|
|
},
|
|
|
axisLine: {
|
|
|
- show: false
|
|
|
+ show: false,
|
|
|
},
|
|
|
data: [
|
|
|
"0",
|
|
@@ -287,9 +302,9 @@ export default {
|
|
|
"22",
|
|
|
"23",
|
|
|
"24",
|
|
|
- "25"
|
|
|
- ]
|
|
|
- }
|
|
|
+ "25",
|
|
|
+ ],
|
|
|
+ },
|
|
|
],
|
|
|
yAxis: [
|
|
|
{
|
|
@@ -297,19 +312,19 @@ export default {
|
|
|
name: "(W)",
|
|
|
axisLabel: {
|
|
|
formatter: "{value}",
|
|
|
- fontSize: 9.35925925925926
|
|
|
+ fontSize: 9.35925925925926,
|
|
|
},
|
|
|
axisLine: {
|
|
|
- show: false
|
|
|
+ show: false,
|
|
|
},
|
|
|
splitLine: {
|
|
|
show: true,
|
|
|
lineStyle: {
|
|
|
color: "#606769",
|
|
|
- type: "dashed"
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ type: "dashed",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
],
|
|
|
series: [
|
|
|
{
|
|
@@ -321,11 +336,11 @@ export default {
|
|
|
lineStyle: {
|
|
|
normal: {
|
|
|
color: "#05bb4c",
|
|
|
- width: 1
|
|
|
+ width: 1,
|
|
|
},
|
|
|
emphasis: {
|
|
|
- color: "#05bb4c"
|
|
|
- }
|
|
|
+ color: "#05bb4c",
|
|
|
+ },
|
|
|
},
|
|
|
areaStyle: {
|
|
|
normal: {
|
|
@@ -333,49 +348,49 @@ export default {
|
|
|
colorStops: [
|
|
|
{
|
|
|
offset: 0,
|
|
|
- color: "rgba(5,187,76,0.3)"
|
|
|
+ color: "rgba(5,187,76,0.3)",
|
|
|
},
|
|
|
{
|
|
|
offset: 1,
|
|
|
- color: "rgba(5,187,76,0.1)"
|
|
|
- }
|
|
|
+ color: "rgba(5,187,76,0.1)",
|
|
|
+ },
|
|
|
],
|
|
|
x: 0,
|
|
|
y: 0,
|
|
|
x2: 0,
|
|
|
y2: 1,
|
|
|
type: "linear",
|
|
|
- global: false
|
|
|
+ global: false,
|
|
|
},
|
|
|
shadowColor: "rgba(5,187,76,0.1)",
|
|
|
- shadowBlur: 10
|
|
|
+ shadowBlur: 10,
|
|
|
},
|
|
|
emphasis: {
|
|
|
color: {
|
|
|
colorStops: [
|
|
|
{
|
|
|
offset: 0,
|
|
|
- color: "rgba(5,187,76,0.3)"
|
|
|
+ color: "rgba(5,187,76,0.3)",
|
|
|
},
|
|
|
{
|
|
|
offset: 1,
|
|
|
- color: "rgba(5,187,76,0.1)"
|
|
|
- }
|
|
|
+ color: "rgba(5,187,76,0.1)",
|
|
|
+ },
|
|
|
],
|
|
|
x: 0,
|
|
|
y: 0,
|
|
|
x2: 0,
|
|
|
y2: 1,
|
|
|
type: "linear",
|
|
|
- global: false
|
|
|
+ global: false,
|
|
|
},
|
|
|
shadowColor: "rgba(5,187,76,0.1)",
|
|
|
- shadowBlur: 10
|
|
|
- }
|
|
|
+ shadowBlur: 10,
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
yAxisIndex: 0,
|
|
|
- data: data1
|
|
|
+ data: data1,
|
|
|
},
|
|
|
{
|
|
|
name: names[1],
|
|
@@ -386,50 +401,50 @@ export default {
|
|
|
lineStyle: {
|
|
|
normal: {
|
|
|
color: "#606769",
|
|
|
- width: 1
|
|
|
+ width: 1,
|
|
|
},
|
|
|
emphasis: {
|
|
|
- color: "#fa8c16"
|
|
|
- }
|
|
|
+ color: "#fa8c16",
|
|
|
+ },
|
|
|
},
|
|
|
areaStyle: {
|
|
|
normal: {
|
|
|
color: "transparent",
|
|
|
shadowColor: "rgba(250,140,22,0.1)",
|
|
|
- shadowBlur: 10
|
|
|
+ shadowBlur: 10,
|
|
|
},
|
|
|
emphasis: {
|
|
|
color: {
|
|
|
colorStops: [
|
|
|
{
|
|
|
offset: 0,
|
|
|
- color: "rgba(250,140,22,0.3)"
|
|
|
+ color: "rgba(250,140,22,0.3)",
|
|
|
},
|
|
|
{
|
|
|
offset: 1,
|
|
|
- color: "rgba(250,140,22,0.1)"
|
|
|
- }
|
|
|
+ color: "rgba(250,140,22,0.1)",
|
|
|
+ },
|
|
|
],
|
|
|
x: 0,
|
|
|
y: 0,
|
|
|
x2: 0,
|
|
|
y2: 1,
|
|
|
type: "linear",
|
|
|
- global: false
|
|
|
+ global: false,
|
|
|
},
|
|
|
shadowColor: "rgba(250,140,22,0.1)",
|
|
|
- shadowBlur: 10
|
|
|
- }
|
|
|
+ shadowBlur: 10,
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
yAxisIndex: 0,
|
|
|
- data: data2
|
|
|
- }
|
|
|
- ]
|
|
|
+ data: data2,
|
|
|
+ },
|
|
|
+ ],
|
|
|
};
|
|
|
myChart.clear();
|
|
|
myChart.setOption(option);
|
|
|
- this.resize = function() {
|
|
|
+ this.resize = function () {
|
|
|
myChart.resize();
|
|
|
};
|
|
|
window.addEventListener("resize", this.resize);
|
|
@@ -471,9 +486,9 @@ export default {
|
|
|
pageIndex: this.currentPage,
|
|
|
pageSize: this.pageSize,
|
|
|
start: this.startRow,
|
|
|
- end: this.endRow
|
|
|
+ end: this.endRow,
|
|
|
});
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
// 生命周期钩子
|
|
|
// 创建前
|
|
@@ -485,7 +500,7 @@ export default {
|
|
|
// 渲染后
|
|
|
mounted() {},
|
|
|
beforeUpdate() {},
|
|
|
- updated() {}
|
|
|
+ updated() {},
|
|
|
};
|
|
|
</script>
|
|
|
|