2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
2019-08-13 15:54:26 +08:00
|
|
|
<div class="plan-tool" style="width: 100%; height: 100%;">
|
2019-08-29 17:16:33 +08:00
|
|
|
<menu-bar ref="menuBar" :skin-style="skinCode" :plan-convert="PlanConvert" @dispatchDialog="dispatchDialog" />
|
2019-08-08 13:36:53 +08:00
|
|
|
<schedule
|
|
|
|
ref="schedule"
|
2019-08-29 17:16:33 +08:00
|
|
|
:skin-code="skinCode"
|
2019-08-08 13:36:53 +08:00
|
|
|
:plan-convert="PlanConvert"
|
|
|
|
:max-height="height"
|
|
|
|
:max-width="width"
|
|
|
|
/>
|
2019-08-13 15:54:26 +08:00
|
|
|
<status-bar ref="statusBar" @dispatchDialog="dispatchDialog" @showTrain="showTrain" />
|
2019-08-08 13:36:53 +08:00
|
|
|
|
2019-08-29 17:16:33 +08:00
|
|
|
<open-run-plan ref="openRunPlan" :skin-code="skinCode" @dispatchDialog="dispatchDialog" />
|
|
|
|
<create-empty-plan ref="createEmptyPlan" @dispatchOperate="dispatchOperate" @dispatchDialog="dispatchDialog" />
|
2019-08-08 13:36:53 +08:00
|
|
|
<parameter ref="parameter" />
|
|
|
|
<off-line ref="offLine" @handleConfirm="handleConfirm" @dispatchDialog="dispatchDialog" />
|
|
|
|
<add-planning-train ref="addPlanningTrain" @dispatchDialog="dispatchDialog" />
|
|
|
|
<edit-planning-train
|
|
|
|
ref="editPlanningTrain"
|
|
|
|
@dispatchDialog="dispatchDialog"
|
|
|
|
@dispatchOperate="dispatchOperate"
|
|
|
|
/>
|
|
|
|
<edit-smooth-run-time ref="editSmoothRunTime" @dispatchDialog="dispatchDialog" />
|
|
|
|
<add-smooth-run-time ref="addSmoothRunTime" @dispatchDialog="dispatchDialog" />
|
|
|
|
<duplicate-train ref="duplicateTrain" @dispatchDialog="dispatchDialog" @dispatchOperate="dispatchOperate" />
|
|
|
|
<modifying-routing ref="modifyingRouting" @dispatchDialog="dispatchDialog" />
|
|
|
|
<modifying-begin-time ref="modifyingBeginTime" />
|
|
|
|
|
|
|
|
<systerm-out ref="systermOut" />
|
|
|
|
<add-task ref="addTask" @dispatchOperate="dispatchOperate" />
|
|
|
|
<delete-task ref="deleteTask" @dispatchOperate="dispatchOperate" />
|
|
|
|
<modifying-task ref="modifyingTask" @dispatchOperate="dispatchOperate" />
|
|
|
|
|
|
|
|
<edit-station-between-time ref="editStationBetweenTime" />
|
|
|
|
|
|
|
|
<modifying-station-interval-time ref="modifyingStationIntervalTime" />
|
|
|
|
</div>
|
2019-07-26 13:32:43 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-08-13 15:54:26 +08:00
|
|
|
// import TitleBar from './titleBar';
|
2019-08-08 13:36:53 +08:00
|
|
|
import MenuBar from './menuBar';
|
|
|
|
import StatusBar from './statusBar';
|
|
|
|
import Schedule from './schedule';
|
|
|
|
import OpenRunPlan from './menus/openRunPlan';
|
|
|
|
import CreateEmptyPlan from './menus/createEmptyPlan';
|
|
|
|
import Parameter from './menus/parameter/index';
|
|
|
|
import OffLine from './menus/offLine';
|
|
|
|
import AddPlanningTrain from './menus/addPlanningTrain';
|
|
|
|
import EditPlanningTrain from './menus/editPlanningTrain';
|
|
|
|
import DuplicateTrain from './menus/duplicateTrain';
|
|
|
|
import SystermOut from './menus/systermOut';
|
|
|
|
import AddTask from './menus/addTask';
|
|
|
|
import DeleteTask from './menus/deleteTask';
|
|
|
|
import ModifyingTask from './menus/modifyingTask';
|
|
|
|
import ModifyingRouting from './menus/modifyingRouting';
|
|
|
|
import ModifyingBeginTime from './menus/modifyingBeginTime';
|
|
|
|
import EditStationBetweenTime from './menus/editStationBetweenTime';
|
|
|
|
import AddSmoothRunTime from './menus/addSmoothRunTime';
|
|
|
|
import EditSmoothRunTime from './menus/editSmoothRunTime';
|
|
|
|
import ModifyingStationIntervalTime from './menus/modifyingStationIntervalTime';
|
|
|
|
import { deletePlanService } from '@/api/runplan';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Menus',
|
|
|
|
components: {
|
|
|
|
MenuBar,
|
|
|
|
StatusBar,
|
|
|
|
Schedule,
|
|
|
|
OpenRunPlan,
|
|
|
|
CreateEmptyPlan,
|
|
|
|
Parameter,
|
|
|
|
OffLine,
|
|
|
|
AddPlanningTrain,
|
|
|
|
EditPlanningTrain,
|
|
|
|
DuplicateTrain,
|
|
|
|
SystermOut,
|
|
|
|
AddTask,
|
|
|
|
DeleteTask,
|
|
|
|
ModifyingTask,
|
|
|
|
ModifyingRouting,
|
|
|
|
ModifyingBeginTime,
|
|
|
|
EditStationBetweenTime,
|
|
|
|
AddSmoothRunTime,
|
|
|
|
EditSmoothRunTime,
|
|
|
|
ModifyingStationIntervalTime
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
PlanConvert: {}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2019-08-29 17:16:33 +08:00
|
|
|
skinCode() {
|
|
|
|
return this.$route.query.skinCode || '02';
|
2019-09-02 15:37:57 +08:00
|
|
|
},
|
|
|
|
width() {
|
|
|
|
return this.$store.state.app.width;
|
|
|
|
},
|
|
|
|
height() {
|
|
|
|
return this.$store.state.app.height;
|
2019-08-08 13:36:53 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
2019-08-29 17:16:33 +08:00
|
|
|
this.PlanConvert = this.$theme.loadPlanConvert(this.skinCode);
|
2019-08-08 13:36:53 +08:00
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
setPosition() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs.schedule.setPosition();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
dispatchDialog(dialogObj) {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
if (this.$refs[dialogObj.name]) {
|
|
|
|
this.$refs[dialogObj.name].doShow(dialogObj.params);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
dispatchOperate(operateObj) {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
if (this.$refs[operateObj.dialogName]) {
|
|
|
|
this.$refs[operateObj.dialogName][operateObj.operate](operateObj.params);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
handleConfirm(params) {
|
|
|
|
if (params.operate == 'AddPlanningTrain') {
|
|
|
|
// 添加计划
|
|
|
|
this.$refs.addPlanningTrain.handleConfirm();
|
|
|
|
} else if (params.operate == 'DeletePlanningTrain') {
|
|
|
|
// 删除计划
|
|
|
|
const model = {
|
|
|
|
planId: this.$route.query.planId,
|
|
|
|
serviceNumber: params.serviceNumber
|
|
|
|
};
|
|
|
|
|
|
|
|
deletePlanService(model).then(resp => {
|
|
|
|
this.$message.success('删除计划成功');
|
|
|
|
this.$store.dispatch('runPlan/setSelected', {});
|
2019-08-09 18:29:08 +08:00
|
|
|
this.$refs.openRunPlan.loadRunPlanData(Object.assign({refresh: true}, this.$route.query));
|
2019-08-08 13:36:53 +08:00
|
|
|
}).catch(() => {
|
|
|
|
this.$messageBox('删除计划失败');
|
|
|
|
});
|
|
|
|
}
|
2019-08-13 15:54:26 +08:00
|
|
|
},
|
|
|
|
showTrain() {
|
|
|
|
if (this.$refs.schedule) {
|
|
|
|
this.$refs.schedule.displayTrain();
|
|
|
|
}
|
2019-08-08 13:36:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.plan-tool {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-tool .pop-menu {
|
|
|
|
background: #F0F0F0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-tool .pop-menu span {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-tool .system-close {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
background: -webkit-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: -o-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: -moz-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
border: 1px solid white;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-tool .system-close::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
font-size: x-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool {
|
|
|
|
overflow: hidden !important;
|
|
|
|
}
|
|
|
|
|
2019-08-29 17:16:33 +08:00
|
|
|
/* .planEdit__tool .el-dialog {
|
2019-07-26 13:32:43 +08:00
|
|
|
overflow: hidden !important;
|
2019-08-13 15:54:26 +08:00
|
|
|
background: rgba(202, 221, 253, 0.88);;
|
2019-07-26 13:32:43 +08:00
|
|
|
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
|
|
|
|
border: 2px solid #727375;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #000;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__header {
|
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__footer {
|
|
|
|
background: #ECE9D8;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__body {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
margin: 0px 3px 3px 3px;
|
|
|
|
border: 2px solid rgba(120, 121, 123, 0.5);
|
|
|
|
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
|
|
|
|
color: #000;
|
|
|
|
background: #ECE9D8;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__title {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__headerbtn {
|
|
|
|
background: -webkit-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: -o-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: -moz-linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
background: linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
|
|
|
|
border: 1px solid white;
|
|
|
|
border-radius: 4px;
|
|
|
|
top: 0px;
|
|
|
|
right: 3px;
|
|
|
|
line-height: 26px;
|
|
|
|
width: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__headerbtn .el-icon-close:before {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-dialog__headerbtn .el-dialog__close {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tabs--top {
|
|
|
|
border: 2px outset #FEFEFD;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tabs__item {
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
color: #000 !important;
|
|
|
|
border-right: 2px outset #fff;
|
|
|
|
padding-left: 10px !important;
|
|
|
|
padding-right: 10px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tab-pane {
|
|
|
|
margin: 10px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tabs--card>.el-tabs__header .el-tabs__item.is-active {
|
|
|
|
border-bottom: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tabs--card>.el-tabs__header .el-tabs__item:not(.is-active) {
|
|
|
|
border-bottom: 2px inset #fff
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-form {
|
|
|
|
background: #ECE9D8 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-card {
|
|
|
|
background: #ECE9D8 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-button {
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
padding: 0px;
|
|
|
|
width: 80px;
|
|
|
|
border: 2px outset #E2E2E2;
|
|
|
|
border-radius: 0px !important;
|
|
|
|
color: #000;
|
|
|
|
background: #ECE9D8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .expand {
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-button:focus span {
|
|
|
|
border: 1px dashed gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-button:active {
|
|
|
|
border: 2px inset #E2E2E2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-button:disabled {
|
|
|
|
border: 2px inset #E2E2E2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-button:disabled span {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .button-group {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-input {
|
|
|
|
border: 2px inset #E9E9E9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-input .el-input__inner {
|
|
|
|
color: #000;
|
|
|
|
background: #fff !important;
|
|
|
|
border: 0px;
|
|
|
|
border-radius: 0px !important;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-input.is-disabled .el-input__inner {
|
|
|
|
background: #F0F0F0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-textarea {
|
|
|
|
border: 2px inset #E9E9E9;
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-textarea .el-textarea__inner {
|
|
|
|
color: #000;
|
|
|
|
background: #fff !important;
|
|
|
|
border: 0px;
|
|
|
|
border-radius: 0px !important;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-textarea.is-disabled .el-textarea__inner {
|
|
|
|
background: #F0F0F0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-table {
|
|
|
|
border: 2px inset #E9E9E9;
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-table .cell {
|
|
|
|
line-height: unset !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-table th.is-leaf {
|
|
|
|
background: #ECE9D8 !important;
|
|
|
|
border-right: 1px solid #BDBDBD !important;
|
|
|
|
border-bottom: 1px solid #BDBDBD !important;
|
|
|
|
color: #000 !important;
|
|
|
|
height: 20px !important;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-table tr td {
|
|
|
|
height: 20px !important;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-table .el-table__empty-text {
|
|
|
|
top: 15px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .current-row>td {
|
|
|
|
background: #316AC5 !important;
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox__inner {
|
|
|
|
border: 1px inset #dcdfe6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox__label {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox.is-disabled .el-checkbox__inner {
|
|
|
|
background: #E6E6E6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox.is-disabled .el-checkbox__label {
|
|
|
|
color: #C5C9CC !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox__input.is-checked .el-checkbox__inner {
|
|
|
|
background: #fff !important;
|
|
|
|
border: 1px inset #dcdfe6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-checkbox__input.is-checked .el-checkbox__inner::after {
|
|
|
|
position: absolute;
|
|
|
|
-webkit-box-sizing: content-box;
|
|
|
|
box-sizing: content-box;
|
|
|
|
content: "";
|
|
|
|
border: 1px solid #000;
|
|
|
|
border-left: 0;
|
|
|
|
border-top: 0;
|
|
|
|
height: 7px;
|
|
|
|
left: 4px;
|
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio__inner {
|
|
|
|
border: 1px inset #dcdfe6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio__label {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio__input.is-checked .el-radio__inner {
|
|
|
|
background: #fff !important;
|
|
|
|
border: 1px inset #dcdfe6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio__input.is-checked .el-radio__inner::after {
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 100%;
|
|
|
|
background-color: #000 !important;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio.is-disabled .el-radio__inner {
|
|
|
|
background: #E6E6E6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-radio.is-disabled .el-radio__label {
|
|
|
|
color: #C5C9CC !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .base-label {
|
|
|
|
background: rgba(0, 0, 0, x);
|
|
|
|
position: relative;
|
|
|
|
left: -15px;
|
|
|
|
top: -18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-form-item label {
|
|
|
|
font-weight: normal !important;
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .context {
|
|
|
|
height: 100px;
|
|
|
|
border: 2px inset #E2E2E2;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .table {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .notice {
|
|
|
|
margin-left: 62px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .button-group {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planEdit__tool .el-dialog .el-tree__empty-block {
|
|
|
|
background: #E9E9E9 !important;
|
|
|
|
color: #000 !important;
|
2019-08-29 17:16:33 +08:00
|
|
|
} */
|
2019-08-08 13:36:53 +08:00
|
|
|
</style>
|