355 lines
8.7 KiB
Vue
355 lines
8.7 KiB
Vue
<template>
|
|
<el-dialog
|
|
:title="title"
|
|
:visible.sync="dialogShow"
|
|
width="100%"
|
|
:before-close="doClose"
|
|
:close-on-click-modal="false"
|
|
:modal="false"
|
|
fullscreen
|
|
>
|
|
<div :id="runPlanId" />
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { runDiagramGetTime } from '@/api/simulation';
|
|
import { timeFormat } from '@/utils/date';
|
|
|
|
export default {
|
|
name: 'RunPlanView',
|
|
props: {
|
|
group: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
dialogShow: false,
|
|
loading: false,
|
|
runPlanId: 'run-plan-view',
|
|
myChart: null,
|
|
PlanConvert: {},
|
|
series: [],
|
|
option: {
|
|
title: {
|
|
text: '',
|
|
left: 'center'
|
|
},
|
|
grid: {
|
|
top: '30px',
|
|
left: '120px',
|
|
right: '40px',
|
|
bottom: '80px',
|
|
containLabel: true,
|
|
backgroundColor: 'floralwhite'
|
|
},
|
|
toolbox: {
|
|
right: '20px',
|
|
feature: {
|
|
dataZoom: {
|
|
yAxisIndex: 'none'
|
|
},
|
|
restore: {},
|
|
saveAsImage: {}
|
|
}
|
|
},
|
|
tooltip: {
|
|
axisPointer: {
|
|
trigger: 'item',
|
|
type: 'cross'
|
|
},
|
|
formatter: this.axisTooltip,
|
|
borderWidth: 1
|
|
},
|
|
xAxis: [
|
|
{
|
|
type: 'category',
|
|
boundaryGap: false,
|
|
data: [],
|
|
axisLine: {
|
|
onZero: false,
|
|
lineStyle: {
|
|
width: 2,
|
|
color: '#d14a61'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
formatter: this.xAxisLableFormat,
|
|
textStyle: {
|
|
color: '#333'
|
|
}
|
|
},
|
|
axisPointer: {
|
|
snap: true,
|
|
label: {
|
|
formatter: this.xAxisPointFormat,
|
|
backgroundColor: 'rgb(255,0,0,0.5)',
|
|
color: 'white'
|
|
}
|
|
}
|
|
}
|
|
],
|
|
yAxis: {
|
|
type: 'value',
|
|
splitLine: {
|
|
show: false
|
|
},
|
|
axisTick: {
|
|
show: false
|
|
},
|
|
axisLine: {
|
|
onZero: false,
|
|
lineStyle: {
|
|
width: 2,
|
|
color: '#d14a61'
|
|
}
|
|
},
|
|
axisLabel: {
|
|
interval: 'auto',
|
|
formatter: this.yAxisLableFormat
|
|
},
|
|
axisPointer: {
|
|
xAxisIndex: 'all',
|
|
label: {
|
|
formatter: this.yAxisPointFormat,
|
|
backgroundColor: 'rgb(0,100,0,0.5)',
|
|
color: 'white'
|
|
}
|
|
},
|
|
min: 0,
|
|
max: 0
|
|
},
|
|
series: [],
|
|
dataZoom: [
|
|
{
|
|
type: 'inside'
|
|
},
|
|
{
|
|
fiterMode: 'filter',
|
|
handleIcon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z',
|
|
handleSize: '80%',
|
|
handleStyle: {
|
|
color: '#fff',
|
|
shadowBlur: 3,
|
|
shadowColor: 'rgba(0, 0, 0, 0.6)',
|
|
shadowOffsetX: 2,
|
|
shadowOffsetY: 2
|
|
},
|
|
bottom: '25px'
|
|
}
|
|
]
|
|
},
|
|
absoluteTime: 2 * 3600,
|
|
indexKmRangeMap: {},
|
|
runPlanData: {}
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters('runPlan', [
|
|
'stations'
|
|
]),
|
|
title() {
|
|
return '运行图预览';
|
|
}
|
|
},
|
|
watch: {
|
|
'$store.state.runPlan.planLoadedCount': function () {
|
|
this.loadChartPage();
|
|
if (this.dialogShow) {
|
|
this.loadInitData(this.series);
|
|
}
|
|
},
|
|
'$store.state.runPlan.planUpdateCount': function () {
|
|
this.updateRunPlanData(this.$store.state.runPlan.updateData);
|
|
},
|
|
'$store.state.app.windowSizeCount': function() {
|
|
this.reSize({ width: this.$store.state.app.width, height: this.$store.state.app.height - 55 });
|
|
}
|
|
},
|
|
mounted() {
|
|
this.PlanConvert = this.$theme.loadPlanConvert(this.$route.query.skinCode);
|
|
this.loadChartPage();
|
|
},
|
|
beforeDestroy() {
|
|
if (this.myChart && this.myChart.isDisposed) {
|
|
this.myChart.dispose();
|
|
this.myChart = null;
|
|
}
|
|
},
|
|
methods: {
|
|
doShow() {
|
|
this.dialogShow = true;
|
|
this.loadInitData(this.series);
|
|
},
|
|
doClose() {
|
|
this.dialogShow = false;
|
|
},
|
|
loadChartPage() {
|
|
const stations = this.$store.state.runPlan.stations;
|
|
const planData = this.$store.state.runPlan.planData;
|
|
this.series = [];
|
|
this.kmRangeCoordMap = this.PlanConvert.convertStationsToMap(stations);
|
|
this.pushModels(this.series, [this.PlanConvert.initializeYaxis(stations)]);
|
|
this.pushModels(this.series, this.PlanConvert.convertDataToModels(planData, stations, this.kmRangeCoordMap, { width: 1, color: '#000' }));
|
|
},
|
|
async loadInitData(series) {
|
|
this.myChart && this.myChart.showLoading();
|
|
await this.xAxisInit();
|
|
await this.yAxisInit();
|
|
await this.loadInitChart(series);
|
|
this.myChart && this.myChart.hideLoading();
|
|
},
|
|
loadInitChart(series) {
|
|
return new Promise((resolve, reject) => {
|
|
try {
|
|
const that = this;
|
|
// 加载echart配置
|
|
require.config(
|
|
{
|
|
paths: {
|
|
echarts: './js/dist'
|
|
}
|
|
}
|
|
);
|
|
// 按需加载所需图表,如需动态类型切换功能,别忘了同时加载相应图表
|
|
require(
|
|
[
|
|
'echarts',
|
|
'echarts/lib/chart/line'
|
|
],
|
|
function (ec) {
|
|
if (that.myChart && that.myChart.isDisposed) {
|
|
that.myChart.clear();
|
|
}
|
|
|
|
let startValue = 3600 + that.PlanConvert.TranslationTime;
|
|
const offsetTime = 3600;
|
|
runDiagramGetTime(that.group).then(resp => {
|
|
startValue = resp.data - that.PlanConvert.TranslationTime;
|
|
that.option.dataZoom[0].startValue = that.option.dataZoom[1].startValue = startValue - offsetTime;
|
|
that.option.dataZoom[0].endValue = that.option.dataZoom[1].endValue = startValue + offsetTime;
|
|
that.option.series = series;
|
|
that.myChart = ec.init(document.getElementById(that.runPlanId));
|
|
if (that.myChart) {
|
|
that.myChart.setOption(that.option);
|
|
that.reSize({ width: document.documentElement.clientWidth, height: document.documentElement.clientHeight - 55 });
|
|
}
|
|
resolve(true);
|
|
});
|
|
}
|
|
);
|
|
} catch (error) {
|
|
reject(error);
|
|
}
|
|
});
|
|
},
|
|
updateRunPlanData(data) {
|
|
const stations = this.$store.state.runPlan.stations;
|
|
const planData = this.$store.state.runPlan.planData;
|
|
this.series = this.PlanConvert.updateDataToModels(data, stations, this.kmRangeCoordMap,
|
|
planData, this.series, { color: '#FF00DE', width: 0.5 }
|
|
);
|
|
this.myChart && this.myChart.setOption({ series: this.series });
|
|
},
|
|
pushModels(series, models) {
|
|
if (models && models.length) {
|
|
models.forEach(elem => {
|
|
if (elem) {
|
|
series.push(elem);
|
|
}
|
|
});
|
|
}
|
|
|
|
return series;
|
|
},
|
|
popModels(series, models) {
|
|
if (models && models.length) {
|
|
models.forEach(elem => {
|
|
const index = series.indexOf(elem);
|
|
if (index >= 0) {
|
|
series.split(index, 1);
|
|
}
|
|
});
|
|
}
|
|
|
|
return series;
|
|
},
|
|
xAxisPointFormat(params) {
|
|
return timeFormat(params.value);
|
|
},
|
|
yAxisPointFormat(params) {
|
|
return this.PlanConvert.computedFormatYAxis(this.stations, params);
|
|
},
|
|
xAxisLableFormat(value, index) {
|
|
if (value % 60 === 0) {
|
|
return timeFormat(value);
|
|
}
|
|
},
|
|
yAxisLableFormat(value, index) {
|
|
return '';
|
|
},
|
|
xAxisInit() {
|
|
const list = [];
|
|
for (var time = this.PlanConvert.TranslationTime; time < 3600 * 24 + this.PlanConvert.TranslationTime; time++) {
|
|
list.push(time);
|
|
}
|
|
this.option.xAxis[0].data = list;
|
|
},
|
|
yAxisInit() {
|
|
if (Object.keys(this.PlanConvert).length) {
|
|
this.option.yAxis.min = this.PlanConvert.computedYaxisMinValue(this.stations);
|
|
this.option.yAxis.max = this.PlanConvert.computedYaxisMaxValue(this.stations);
|
|
}
|
|
},
|
|
axisTooltip(param) {
|
|
const station = this.stations[Math.floor((param.data[1] - this.PlanConvert.EdgeHeight) / this.PlanConvert.CoordMultiple)] || { name: '', kmRange: '' };
|
|
return [
|
|
`Point Data <hr size=1 style="margin: 3px 0">`,
|
|
`车站名称: ${station.name}<br>`,
|
|
`车站公里标: ${station.kmRange} km <br>`,
|
|
`到站时间: ${timeFormat(param.data[0] + this.PlanConvert.TranslationTime)} (${param.data[0]})<br>`
|
|
].join('');
|
|
},
|
|
settingExac(data) {
|
|
this.absoluteTime = Math.abs(parseInt(data.endValue) - parseInt(data.startValue)) / 1000;
|
|
this.myChart && this.myChart.setOption({
|
|
xAxis: this.option.xAxis,
|
|
yAxis: this.option.yAxis
|
|
});
|
|
|
|
this.myChart && this.myChart.dispatchAction({
|
|
type: 'dataZoom',
|
|
dataZoomIndex: [0, 1],
|
|
startValue: parseInt(data.startValue / 1000),
|
|
endValue: parseInt(data.endValue / 1000)
|
|
});
|
|
},
|
|
run(start) {
|
|
this.myChart && this.myChart.dispatchAction({
|
|
type: 'dataZoom',
|
|
dataZoomIndex: [0, 1],
|
|
startValue: parseInt(start - this.absoluteTime / 2),
|
|
endValue: parseInt(start + this.absoluteTime / 2)
|
|
});
|
|
this.loadInitData(this.series);
|
|
},
|
|
reSize(opt) {
|
|
if (this.myChart) {
|
|
this.myChart.resize({ width: opt.width, height: opt.height, silent: false });
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped rel="stylesheet/scss" lang="scss">
|
|
/deep/ {
|
|
.el-dialog__body {
|
|
padding: 0px !important;
|
|
background-color: floralwhite !important;
|
|
}
|
|
}
|
|
</style>
|