From dc7a117b0f41ee61084b17ee8eca60c1750dfab7 Mon Sep 17 00:00:00 2001
From: joylink_cuiweidong <364937672@qq.com>
Date: Fri, 10 Jun 2022 16:23:09 +0800
Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E9=93=81=E9=A1=B9=E7=9B=AE=20?=
=?UTF-8?q?=E7=AE=A1=E7=90=86=E7=BB=88=E7=AB=AF=20=20=E9=A1=B5=E9=9D=A2=20?=
=?UTF-8?q?=E6=B7=BB=E5=8A=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/index.js | 10 +-
src/views/bigTrainRunplanManage/index.vue | 103 +++++++++++++++++++++
src/views/newMap/displayNew/menuSchema.vue | 20 ++++
3 files changed, 132 insertions(+), 1 deletion(-)
create mode 100644 src/views/bigTrainRunplanManage/index.vue
diff --git a/src/router/index.js b/src/router/index.js
index 59471c241..5297f6210 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -44,6 +44,7 @@ const DisplayBaSiDi = () => import('@/views/newMap/displayBaSiDi/index');
const DesignDisplayNew = () => import('@/views/newMap/displayNew/scriptDisplay/scriptPreview/index');
const PracticeDisplay = () => import('@/views/newMap/displayNew/practiceDisplay');
const BigLPFStrategy = () => import('@/views/newMap/displayNew/bigLPFStrategy');
+const BigTrainRunplanManage = () => import('@/views/bigTrainRunplanManage/index');
const JointTrainingNew = () => import('@/views/newMap/jointTrainingNew/index');
const jointTrainingNewCCTV = () => import('@/views/newMap/jointTrainingNew/realCCTV');
@@ -680,7 +681,14 @@ export const publicAsyncRoute = [
hidden: true
}
]
- }
+ },
+ {
+ // 大铁项目 管理终端
+ path: '/bigTrainRunplanManage',
+ component: BigTrainRunplanManage,
+ hidden: true
+ },
+
];
// 城市轨道项目
export const asyncRouter = [
diff --git a/src/views/bigTrainRunplanManage/index.vue b/src/views/bigTrainRunplanManage/index.vue
new file mode 100644
index 000000000..dafc17790
--- /dev/null
+++ b/src/views/bigTrainRunplanManage/index.vue
@@ -0,0 +1,103 @@
+
+
+
+
+
+
diff --git a/src/views/newMap/displayNew/menuSchema.vue b/src/views/newMap/displayNew/menuSchema.vue
index d3d38fe41..e61941ab2 100644
--- a/src/views/newMap/displayNew/menuSchema.vue
+++ b/src/views/newMap/displayNew/menuSchema.vue
@@ -13,7 +13,9 @@
占线板
+
CTC
+ 管理终端
IBP盘
运行图编辑
@@ -234,6 +236,24 @@ export default {
});
window.open(routeData.href, '_blank');
},
+ goRpManage(){
+ const routeData = this.$router.resolve({
+ path:'/bigTrainRunplanManage',
+ query:{
+ lineCode:this.$route.query.lineCode,
+ group: this.$route.query.group,
+ // prdType: this.$route.query.prdType,
+ mapId:this.$route.query.mapId,
+ project: this.project,
+ newApi: this.$route.query.newApi,
+ // ctc: true,
+ // try: this.$route.query.try,
+ token:getToken(),
+ noPreLogout: true
+ }
+ });
+ window.open(routeData.href, '_blank');
+ },
changeOperateMode() {
this.faultMode = !this.faultMode;
let mode = OperateMode.NORMAL;