rt-sim-training-client/src/views/planMonitor/newEditTool/statusBar.vue

246 lines
8.7 KiB
Vue
Raw Normal View History

2020-08-14 18:30:04 +08:00
<template>
<div class="PlanStatusBar">
<ul class="ul-box">
2021-03-05 16:44:32 +08:00
<!-- v-if="isNotUser" -->
2020-12-11 20:17:18 +08:00
<div class="li_plan" @click="showTrain">{{ $t('planMonitor.serviceAndTripNumber') }}</div>
<div class="li_plan" @click="handleGernaratePlanningTrain">{{ $t('planMonitor.gerneratePlan') }}</div>
<div class="li_plan" @click="handleAddPlanningTrain">{{ $t('planMonitor.addPlan') }}</div>
<div class="li_plan" @click="handleDeletePlanningTrain">{{ $t('planMonitor.deletePlan') }}</div>
2020-12-29 18:37:33 +08:00
<div class="li_plan" @click="handleMovePlanningTrain">移动计划</div>
2020-12-11 20:17:18 +08:00
<div class="li_plan" @click="handleDuplicateTrain">{{ $t('planMonitor.duplicatePlan') }}</div>
<div class="li_plan" @click="handleAddTask">{{ $t('planMonitor.addTask') }}</div>
<div class="li_plan" @click="handleDeleteTask">{{ $t('planMonitor.deleteTask') }}</div>
<div class="li_plan" @click="handleModifyingTask">{{ $t('planMonitor.modifyTask') }}</div>
2020-12-22 17:27:04 +08:00
<div class="li_plan" @click="handleClearData">清除数据</div>
2020-08-14 18:30:04 +08:00
</ul>
<ul class="ul-box tool">
<div class="li_plan" @click="handlePlanEffectiveCheck">{{ $t('planMonitor.validityCheck') }}</div>
2021-03-05 16:44:32 +08:00
<div class="li_plan" @click="handleTestRunPlan">{{ $t('planMonitor.testRunning') }}</div>
2020-08-14 18:30:04 +08:00
</ul>
</div>
</template>
<script>
2021-03-05 16:44:32 +08:00
import { planEffectiveCheck, runPlanNotify, clearPlaningData } from '@/api/runplan';
import { launchFullscreen } from '@/utils/screen';
import { UrlConfig } from '@/scripts/ConstDic';
2020-08-14 18:30:04 +08:00
export default {
name: 'PlanStatusBar',
props: {
loadRunPlanId: {
type: String,
default() {
return '';
}
}
},
data() {
return {
2020-12-11 20:17:18 +08:00
// isNotUser: true
2020-08-14 18:30:04 +08:00
};
},
watch: {
},
2021-03-05 16:44:32 +08:00
created() {
// if (/^\/plan\/usertool/.test(this.$route.fullPath)) {
// this.isNotUser = false;
// } else {
// this.isNotUser = true;
// }
},
2020-08-14 18:30:04 +08:00
methods: {
showTrain() {
this.$emit('showTrain');
},
// 添加计划
handleAddPlanningTrain() {
2021-03-05 16:44:32 +08:00
const planId = this.$route.query.planId || this.loadRunPlanId;
if (planId) {
2020-08-14 18:30:04 +08:00
this.$emit('dispatchDialog', { name: 'addPlanningTrain', params: {} });
} else {
this.$messageBox(this.$t('tip.selectARunGraphFirst'));
}
},
2021-03-05 16:44:32 +08:00
handleGernaratePlanningTrain() {
const planId = this.$route.query.planId || this.loadRunPlanId;
if (planId) {
this.$emit('dispatchDialog', { name: 'gernaratePlanTrain', params: {} });
} else {
this.$messageBox(this.$t('tip.selectARunGraphFirst'));
}
},
2020-08-14 18:30:04 +08:00
// 删除计划
handleDeletePlanningTrain() {
2021-03-05 16:44:32 +08:00
const serviceNumber = this.$store.state.runPlan.selected.serviceNumber;
2020-08-14 18:30:04 +08:00
if (serviceNumber) {
this.$emit('dispatchDialog', {
name: 'offLine', params: {
type: 'warning',
width: 260,
message: this.$t('tip.deleteTrainHint') + serviceNumber + '?',
operate: 'DeletePlanningTrain',
serviceNumber: serviceNumber,
refresh: true
}
});
} else {
this.$messageBox(this.$t('tip.selectAPlan'));
}
},
2021-03-05 16:44:32 +08:00
handleMovePlanningTrain() {
const serviceNumber = this.$store.state.runPlan.selected.serviceNumber;
2020-08-14 18:30:04 +08:00
if (serviceNumber) {
2021-03-05 16:44:32 +08:00
this.$emit('dispatchDialog', { name: 'movePlaningTrain', params: { serviceNumber } });
2020-08-14 18:30:04 +08:00
} else {
this.$messageBox(this.$t('tip.selectAPlan'));
}
},
2021-03-05 16:44:32 +08:00
// 复制计划
handleDuplicateTrain() {
const serviceNumber = this.$store.state.runPlan.selected.serviceNumber;
2020-12-22 17:27:04 +08:00
if (serviceNumber) {
2021-03-05 16:44:32 +08:00
this.$emit('dispatchDialog', { name: 'duplicateTrain', params: { serviceNumber } });
2020-12-22 17:27:04 +08:00
} else {
this.$messageBox(this.$t('tip.selectAPlan'));
}
},
2020-08-14 18:30:04 +08:00
// 添加任务
handleAddTask() {
2021-03-05 16:44:32 +08:00
const params = this.$store.state.runPlan.selected;
2020-08-14 18:30:04 +08:00
if (params.serviceNumber && params.tripNumber) {
this.$emit('dispatchDialog', { name: 'addTask', params });
} else {
this.$messageBox(this.$t('tip.selectATrain'));
}
},
// 删除任务
handleDeleteTask() {
2021-03-05 16:44:32 +08:00
const params = this.$store.state.runPlan.selected;
2020-08-14 18:30:04 +08:00
if (params.serviceNumber && params.tripNumber) {
this.$emit('dispatchDialog', { name: 'deleteTask', params });
} else {
this.$messageBox(this.$t('tip.selectATrain'));
}
},
2021-03-05 16:44:32 +08:00
// 修改任务
handleModifyingTask() {
const params = this.$store.state.runPlan.selected;
if (params.serviceNumber && params.tripNumber) {
this.$emit('dispatchDialog', { name: 'modifyingTask', params });
} else {
this.$messageBox(this.$t('tip.selectATrain'));
}
},
2020-12-22 17:27:04 +08:00
// 清除数据
handleClearData() {
this.$confirm('本操作将清除本运行图数据!', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
center: true
}).then(() => {
2021-03-05 16:44:32 +08:00
clearPlaningData(this.$route.query.planId).then(resp => {
2020-12-22 17:27:04 +08:00
console.log('清除数据成功!');
2021-03-05 16:44:32 +08:00
this.$emit('refresh');
2020-12-22 17:27:04 +08:00
}).catch(() => {
this.$message.error('清除数据失败!');
});
}).catch(() => {
console.error('清除数据失败!');
});
},
2020-08-14 18:30:04 +08:00
// 校验运行图
handlePlanEffectiveCheck() {
2021-03-05 16:44:32 +08:00
const planId = this.$route.query.planId;
if (planId) {
2020-08-14 18:30:04 +08:00
if (/^\/plan\/usertool/.test(this.$route.fullPath)) {
this.$messageBox(' 功能待完善');
} else {
2021-03-05 16:44:32 +08:00
planEffectiveCheck(planId).then(resp => {
2020-08-14 18:30:04 +08:00
this.$emit('dispatchDialog', {
name: 'systermOut',
params: {
width: 600,
contextList: resp.data.length > 0 ? resp.data : ['检查成功']
}
});
}).catch(error => {
this.$messageBox(error.message + ' ' + this.$t('tip.runGraphVerificationFailed'));
});
}
2021-03-05 16:44:32 +08:00
2020-08-14 18:30:04 +08:00
} else {
this.$messageBox(this.$t('tip.selectARunGraphFirst'));
}
2020-12-11 20:17:18 +08:00
},
2021-03-05 16:44:32 +08:00
// 测试运行图
async handleTestRunPlan() {
const data = { planId: this.$route.query.planId };
if (/^\/plan\/usertool/.test(this.$route.fullPath)) {
this.$messageBox(' 功能待完善');
2020-12-11 20:17:18 +08:00
} else {
2021-03-05 16:44:32 +08:00
runPlanNotify(data).then(resp => {
if (resp.data) {
const query = {
prdType: '01', group: resp.data, mapId: this.$route.query.mapId, planId: this.$route.query.planId
};
// this.$router.push({ path: `${UrlConfig.display}/plan`, query: query });
this.$router.push({ path: UrlConfig.design.testRunPlan, query: query });
launchFullscreen();
} else {
this.$messageBox(this.$t('error.checkTheValidityFirst'));
}
}).catch(error => {
this.$messageBox(this.$t('tip.createSimulationFaild') + this.$t('global.colon') + error.message);
});
2020-12-11 20:17:18 +08:00
}
2021-03-05 16:44:32 +08:00
2020-08-14 18:30:04 +08:00
}
}
};
</script>
<style scoped rel="stylesheet/scss" lang="scss">
@import "src/styles/mixin.scss";
.PlanStatusBar {
z-index: 5;
position: absolute;
width: 50px;
height: calc(100% - 45px);
top: 45px;
right: 0px;
background: #293c55;
padding-top: 10px;
}
.ul-box{
width: 100%;
padding: 0;
.li_plan{
width: 100%;
height: 50px;
font-size: 14px;
color: rgba(255, 255, 255, 0.45);
text-align: center;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 4px;
cursor: pointer;
&:hover{
background: #0e151f;
color: #fff;
}
}
}
.tool{
position: absolute;
bottom: 50px;
}
</style>