From dc2165733e17e470228defe3aa7f5e183a4f04b2 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Mon, 27 May 2024 16:33:48 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E5=9C=BA=E6=99=AF=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=B8=89=E7=BB=B4=E5=9C=BA=E6=99=AF=EF=BC=8C=E5=AE=9E=E8=AE=AD?= =?UTF-8?q?=E4=B8=AD=E5=8F=AF=E6=A0=B9=E6=8D=AEurl=E6=89=93=E5=BC=80?= =?UTF-8?q?=E4=B8=89=E7=BB=B4=E5=9C=BA=E6=99=AF=EF=BC=88=E5=BE=85=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contest/contestDetail.vue | 15 ++- .../contestSceneManage/ContestSceneManage.vue | 20 +++- .../contestSceneManage/addThree.vue | 108 ++++++++++++++++++ 3 files changed, 140 insertions(+), 3 deletions(-) create mode 100644 src/views/contestDataManage/contestSceneManage/addThree.vue diff --git a/src/views/contest/contestDetail.vue b/src/views/contest/contestDetail.vue index b353db0cf..0618f38d6 100644 --- a/src/views/contest/contestDetail.vue +++ b/src/views/contest/contestDetail.vue @@ -44,7 +44,8 @@
评分表 - 开始任务 + 开始任务 + 开始任务 播放视频 下一任务
@@ -58,6 +59,7 @@ + From 869c86b94d312545cbf08a85ac549699aa84ef1a Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Mon, 27 May 2024 16:57:01 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=B8=89=E7=BB=B4?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contest/contestDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/contest/contestDetail.vue b/src/views/contest/contestDetail.vue index 0618f38d6..6ac1d44c0 100644 --- a/src/views/contest/contestDetail.vue +++ b/src/views/contest/contestDetail.vue @@ -187,7 +187,7 @@ export default { getContextSenceDetail(this.nowData.sceneId).then((res) => { const url = res.data.scene.url; const token = getToken(); - window.open(`${url}&token=${token}`, '_blank'); + window.open(`https://joylink.club/gdtraining/index.html?name=${url}/${url}&token=${token}`, '_blank'); this.loading = false; }).catch(error => { this.$message.error(error.message); From cef55a4c6b213bc3b205ca6ac1af3c4349bcf5f4 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Mon, 27 May 2024 17:09:01 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E4=B8=89=E7=BB=B4url=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contest/contestDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/contest/contestDetail.vue b/src/views/contest/contestDetail.vue index 6ac1d44c0..f3e8b190e 100644 --- a/src/views/contest/contestDetail.vue +++ b/src/views/contest/contestDetail.vue @@ -187,7 +187,7 @@ export default { getContextSenceDetail(this.nowData.sceneId).then((res) => { const url = res.data.scene.url; const token = getToken(); - window.open(`https://joylink.club/gdtraining/index.html?name=${url}/${url}&token=${token}`, '_blank'); + window.open(`${url}${token}`, '_blank'); this.loading = false; }).catch(error => { this.$message.error(error.message); From 081d5bf63062b4019a5c6174ce48d89eb47437c2 Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Tue, 4 Jun 2024 11:14:54 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E6=88=90=E9=83=BD=E5=B7=A5=E4=B8=9A?= =?UTF-8?q?=E5=AD=A6=E9=99=A2=E7=99=BB=E5=BD=95=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/thirdLogin/cgyLogin.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/thirdLogin/cgyLogin.vue b/src/views/thirdLogin/cgyLogin.vue index 69f83fdf6..d2cca5a8a 100644 --- a/src/views/thirdLogin/cgyLogin.vue +++ b/src/views/thirdLogin/cgyLogin.vue @@ -27,13 +27,13 @@ export default { } }, mounted() { - const appId = this.$route.query.appId; - const sessionId = this.$route.query.sessionId; + const appId = this.$route.query.app_id; + const sessionId = this.$route.query.session_id; const timeStamp = this.$route.query.timeStamp; - const account = this.$route.query.account; - const name = this.$route.query.name; + const account = this.$route.query.user_name; + const name = this.$route.query.nick_name; const parentAccount = this.$route.query.parentAccount; - const functionId = this.$route.query.functionId; + const functionId = this.$route.query.systemId; if (appId && account && name) { const data = { appId, From 37e0779d238432de6a2ffac3a3b65cb1e558105e Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Tue, 4 Jun 2024 11:42:34 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E6=88=90=E9=83=BD=E5=B7=A5=E4=B8=9A?= =?UTF-8?q?=E5=AD=A6=E9=99=A2=E7=AC=AC=E4=B8=89=E6=96=B9=E6=96=B0=E5=BC=80?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=85=B3=E9=97=AD=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/newMap/display/simulationMenu/simulationMenu.vue | 4 +++- src/views/thirdLogin/cgyLogin.vue | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/newMap/display/simulationMenu/simulationMenu.vue b/src/views/newMap/display/simulationMenu/simulationMenu.vue index 1f1704596..6b706615d 100644 --- a/src/views/newMap/display/simulationMenu/simulationMenu.vue +++ b/src/views/newMap/display/simulationMenu/simulationMenu.vue @@ -227,7 +227,9 @@ export default { this.logout(); // }); } else if (this.$route.query.third) { - if (this.$route.query.project === 'cgy' || this.$route.query.project === 'drts') { + if (this.$route.query.thirdOpen) { + window.close(); + } else if (this.$route.query.project === 'cgy' || this.$route.query.project === 'drts') { window.parent.postMessage('back', '*'); } else { window.close(); diff --git a/src/views/thirdLogin/cgyLogin.vue b/src/views/thirdLogin/cgyLogin.vue index d2cca5a8a..a85e4cd28 100644 --- a/src/views/thirdLogin/cgyLogin.vue +++ b/src/views/thirdLogin/cgyLogin.vue @@ -63,7 +63,8 @@ export default { async enterSimulation() { const query = { third: true, - query: 'cgy' + project: 'cgy', + thirdOpen: true }; const resp = await getMapFunctioById(this.$route.query.systemId); query.mapId = resp.data.mapId; From 916bc645ed5d4ac14d1984d13974a05e5b327dde Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Tue, 18 Jun 2024 15:36:57 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BF=90=E8=A1=8C?= =?UTF-8?q?=E5=9B=BE=E6=B5=8B=E8=AF=95=E5=AE=A2=E6=88=B7=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../newMap/newMapdraft/mapoperate/terminals/terminals.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/newMap/newMapdraft/mapoperate/terminals/terminals.vue b/src/views/newMap/newMapdraft/mapoperate/terminals/terminals.vue index 3a02cb045..6e8022e90 100644 --- a/src/views/newMap/newMapdraft/mapoperate/terminals/terminals.vue +++ b/src/views/newMap/newMapdraft/mapoperate/terminals/terminals.vue @@ -369,6 +369,11 @@ export default { name: '列车PIS', code: 'pisTrain', isShow: () => type === 'METRO' + }, + { + name: '运行图测试', + code: 'testRunplan', + isShow: () => type === 'METRO' } ]; const terminalList = commonTerminals(type);