|
@@ -1,12 +1,11 @@
|
|
|
<template>
|
|
|
<moduleEnclosure title="近30天工单趋势">
|
|
|
- <template v-slot:rightce>
|
|
|
+ <template v-slot:rightce>
|
|
|
<el-tabs v-model="tabCurrent" type="card" @tab-click="changeTab">
|
|
|
<el-tab-pane v-for="(item, index) in tabList" :key="index" :label="item" :name="item"></el-tab-pane>
|
|
|
</el-tabs>
|
|
|
-
|
|
|
- </template>
|
|
|
- <div class="all-container">
|
|
|
+ </template>
|
|
|
+ <div class="all-container">
|
|
|
<div id="workorderEcharts1" style="width: 100%; height: 100%"></div>
|
|
|
</div>
|
|
|
</moduleEnclosure>
|
|
@@ -14,10 +13,10 @@
|
|
|
|
|
|
<script>
|
|
|
import vScrollView from 'v-scroll-view'
|
|
|
-import moduleEnclosure from '@/components/moduleEnclosure.vue';
|
|
|
-import * as echarts from 'echarts';
|
|
|
-import { getWorkorderTrend } from '@/api/bigView.js';
|
|
|
-import { csize } from '@/utils/const.js';
|
|
|
+import moduleEnclosure from '@/components/moduleEnclosure.vue'
|
|
|
+import * as echarts from 'echarts'
|
|
|
+import { getWorkorderTrend } from '@/api/bigView.js'
|
|
|
+import { csize } from '@/utils/const.js'
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
@@ -28,8 +27,8 @@ export default {
|
|
|
return {
|
|
|
tabList: [],
|
|
|
tabCurrent: '',
|
|
|
- tableData: [],
|
|
|
- };
|
|
|
+ tableData: []
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
@@ -37,12 +36,12 @@ export default {
|
|
|
},
|
|
|
|
|
|
beforeUnmount() {
|
|
|
- this.mouseenter();
|
|
|
+ this.mouseenter()
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
tabCurrent() {
|
|
|
- this.mouseenter();
|
|
|
+ this.mouseenter()
|
|
|
this.dingshishuaxin()
|
|
|
}
|
|
|
},
|
|
@@ -54,25 +53,25 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
dingshishuaxin() {
|
|
|
- this.initData();
|
|
|
+ this.initData()
|
|
|
this.TimeId = setTimeout(() => {
|
|
|
this.setbiuaoji()
|
|
|
}, 3000)
|
|
|
},
|
|
|
getDate() {
|
|
|
- const today = new Date();
|
|
|
- const dates = [];
|
|
|
+ const today = new Date()
|
|
|
+ const dates = []
|
|
|
for (let i = 0; i < 30; i++) {
|
|
|
- const d = new Date();
|
|
|
- d.setDate(today.getDate() - i);
|
|
|
- dates.unshift(d.toISOString().split('T')[0].slice(5, 11));
|
|
|
+ const d = new Date()
|
|
|
+ d.setDate(today.getDate() - i)
|
|
|
+ dates.unshift(d.toISOString().split('T')[0].slice(5, 11))
|
|
|
}
|
|
|
- return dates;
|
|
|
+ return dates
|
|
|
},
|
|
|
|
|
|
setbiuaoji() {
|
|
|
var index = this.tabList.indexOf(this.tabCurrent)
|
|
|
- if (index >= (this.tabList.length - 1)) {
|
|
|
+ if (index >= this.tabList.length - 1) {
|
|
|
this.tabCurrent = this.tabList[0]
|
|
|
} else {
|
|
|
this.tabCurrent = this.tabList[index + 1]
|
|
@@ -80,25 +79,25 @@ export default {
|
|
|
},
|
|
|
|
|
|
changeTab(item) {
|
|
|
- this.tabCurrent = item.name;
|
|
|
- this.initEcharts();
|
|
|
+ this.tabCurrent = item.name
|
|
|
+ this.initEcharts()
|
|
|
},
|
|
|
|
|
|
initData() {
|
|
|
getWorkorderTrend().then(res => {
|
|
|
- this.tabList = res.data.map(o => o.lx);
|
|
|
- if (this.tabCurrent == "") {
|
|
|
+ this.tabList = res.data.map(o => o.lx)
|
|
|
+ if (this.tabCurrent == '') {
|
|
|
this.setbiuaoji()
|
|
|
}
|
|
|
- this.tableData = res.data;
|
|
|
- this.initEcharts();
|
|
|
+ this.tableData = res.data
|
|
|
+ this.initEcharts()
|
|
|
})
|
|
|
},
|
|
|
|
|
|
initEcharts() {
|
|
|
- var chartDom = document.getElementById('workorderEcharts1');
|
|
|
- var myChart = echarts.init(chartDom);
|
|
|
- var option;
|
|
|
+ var chartDom = document.getElementById('workorderEcharts1')
|
|
|
+ var myChart = echarts.init(chartDom)
|
|
|
+ var option
|
|
|
|
|
|
option = {
|
|
|
title: {
|
|
@@ -117,8 +116,8 @@ export default {
|
|
|
type: 'line',
|
|
|
lineStyle: {
|
|
|
type: 'dashed',
|
|
|
- color: '#8AB1DC',
|
|
|
- },
|
|
|
+ color: '#8AB1DC'
|
|
|
+ }
|
|
|
},
|
|
|
textStyle: {
|
|
|
color: '#ffffff'
|
|
@@ -134,7 +133,7 @@ export default {
|
|
|
data: ['已完工', '未完工'],
|
|
|
textStyle: {
|
|
|
color: '#A9BBCC'
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
// grid: {
|
|
|
// left: '3%',
|
|
@@ -151,23 +150,23 @@ export default {
|
|
|
x: csize(40),
|
|
|
y: csize(50),
|
|
|
x2: csize(20),
|
|
|
- y2: csize(20),
|
|
|
+ y2: csize(20)
|
|
|
},
|
|
|
xAxis: {
|
|
|
type: 'category',
|
|
|
boundaryGap: false,
|
|
|
axisLabel: {
|
|
|
- fontSize: csize(12),
|
|
|
+ fontSize: csize(12)
|
|
|
},
|
|
|
axisLine: {
|
|
|
lineStyle: {
|
|
|
- color: '#8AB1DC', // x轴文字颜色
|
|
|
+ color: '#8AB1DC' // x轴文字颜色
|
|
|
}
|
|
|
},
|
|
|
splitLine: {
|
|
|
show: false,
|
|
|
lineStyle: {
|
|
|
- color: 'rgba(256, 256, 256, 0.1)', // x轴辅助线颜色
|
|
|
+ color: 'rgba(256, 256, 256, 0.1)' // x轴辅助线颜色
|
|
|
}
|
|
|
},
|
|
|
data: this.getDate()
|
|
@@ -175,14 +174,14 @@ export default {
|
|
|
yAxis: {
|
|
|
type: 'value',
|
|
|
minInterval: 1,
|
|
|
- name: "(单/台)",
|
|
|
+ name: '(单/台)',
|
|
|
nameTextStyle: {
|
|
|
- color: "#aaa",
|
|
|
- nameLocation: "start",
|
|
|
+ color: '#aaa',
|
|
|
+ nameLocation: 'start'
|
|
|
// align: 'right'
|
|
|
},
|
|
|
axisLabel: {
|
|
|
- fontSize: csize(12),
|
|
|
+ fontSize: csize(12)
|
|
|
// 使用 formatter 函数格式化刻度标签
|
|
|
// formatter: function(value) {
|
|
|
// // 判断是否为整数
|
|
@@ -195,13 +194,13 @@ export default {
|
|
|
},
|
|
|
axisLine: {
|
|
|
lineStyle: {
|
|
|
- color: '#8AB1DC', // y轴文字颜色
|
|
|
+ color: '#8AB1DC' // y轴文字颜色
|
|
|
}
|
|
|
},
|
|
|
splitLine: {
|
|
|
show: true,
|
|
|
lineStyle: {
|
|
|
- color: 'rgba(256, 256, 256, 0.1)', // y轴辅助线颜色
|
|
|
+ color: 'rgba(256, 256, 256, 0.1)' // y轴辅助线颜色
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -212,10 +211,10 @@ export default {
|
|
|
stack: 'Total',
|
|
|
itemStyle: {
|
|
|
normal: {
|
|
|
- color: '#44E28F',
|
|
|
- },
|
|
|
+ color: '#44E28F'
|
|
|
+ }
|
|
|
},
|
|
|
- data: this.tableData.find(o => o.lx == this.tabCurrent).unitNum
|
|
|
+ data: this.tableData.find(o => o.lx == this.tabCurrent)?.unitNum || ''
|
|
|
},
|
|
|
{
|
|
|
name: '未完工',
|
|
@@ -223,22 +222,21 @@ export default {
|
|
|
stack: 'Total',
|
|
|
itemStyle: {
|
|
|
normal: {
|
|
|
- color: '#D73A79',
|
|
|
- },
|
|
|
+ color: '#D73A79'
|
|
|
+ }
|
|
|
},
|
|
|
- data: this.tableData.find(o => o.lx == this.tabCurrent).unitNumWwg
|
|
|
- },
|
|
|
+ data: this.tableData.find(o => o.lx == this.tabCurrent)?.unitNumWwg || ''
|
|
|
+ }
|
|
|
]
|
|
|
- };
|
|
|
+ }
|
|
|
|
|
|
- option && myChart.setOption(option);
|
|
|
+ option && myChart.setOption(option)
|
|
|
}
|
|
|
- },
|
|
|
-};
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
-
|
|
|
::v-deep .el-tabs {
|
|
|
width: 100%;
|
|
|
.el-tabs__header {
|