From cdfe2a9a65989ba895697a60d3642fd85de95893 Mon Sep 17 00:00:00 2001 From: fan <18706759286@163.com> Date: Mon, 19 Jul 2021 13:19:56 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=81=94=E9=94=81?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=A1=B9=20=3D=E3=80=8B=20=E8=BF=9B=E8=B7=AF?= =?UTF-8?q?=E8=81=94=E9=94=81=E4=B8=8D=E5=8C=85=E5=90=AB=E7=AB=99=E5=8F=B0?= =?UTF-8?q?=E6=89=A3=E8=BD=A6=20=20routeInterlockDoNotIncludeStandHoldTrai?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/newMap/newMapdraft/ciConfig.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/newMap/newMapdraft/ciConfig.vue b/src/views/newMap/newMapdraft/ciConfig.vue index 979d94761..cb784771c 100644 --- a/src/views/newMap/newMapdraft/ciConfig.vue +++ b/src/views/newMap/newMapdraft/ciConfig.vue @@ -93,7 +93,7 @@ export default { 'routeNameUseEndOppositeSignalName', 'generateTbRoute', 'tbRouteNameUseEndOppositeSignalName', 'routeSignalAlwaysGreen', 'routeApartByOverlap', 'overlapOnlySwitch', 'overlapSwitchNpOnly', 'overlapSignalOppositeSwitchNpOnly', 'generateCycle', 'routeButton', 'likeHa1', 'getNearlySignal', 'overlapSettingByTrigger', 'generateFls', 'signalApproachNotPassPreSignal', - 'generateDestination', 'ctcOverlapOnlyTurnBackStationLock' + 'generateDestination', 'ctcOverlapOnlyTurnBackStationLock', 'routeInterlockDoNotIncludeStandHoldTrain' ], multipleList: ['sharingECStations'], selectList: [], @@ -127,7 +127,8 @@ export default { signalApproachNotPassPreSignal:'信号机接近区段不跨过前方同向信号机', generateDestination: '是否生成目的地码定义(泰雷兹)', sharingECStations: '共享紧急关闭效果的车站', - ctcOverlapOnlyTurnBackStationLock: 'CTC列车进路延续保护仅折返站处锁闭' + ctcOverlapOnlyTurnBackStationLock: 'CTC列车进路延续保护仅折返站处锁闭', + routeInterlockDoNotIncludeStandHoldTrain: '进路联锁不包含站台扣车' } }; }, From c9ce97534aaac6a9b1251ff65cafca74cf8ceba8 Mon Sep 17 00:00:00 2001 From: fan <18706759286@163.com> Date: Tue, 20 Jul 2021 13:48:21 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E8=BF=9B=E8=B7=AF=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=89=B9=E9=87=8F=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/jmap/mapdraft.js | 14 +++++ src/utils/baseUrl.js | 4 +- .../dataRelation/routeoperate/detail.vue | 51 ++++++++++++++++++- 3 files changed, 65 insertions(+), 4 deletions(-) diff --git a/src/api/jmap/mapdraft.js b/src/api/jmap/mapdraft.js index 6a391e915..810320343 100644 --- a/src/api/jmap/mapdraft.js +++ b/src/api/jmap/mapdraft.js @@ -660,3 +660,17 @@ export function checkConfig(mapId, data) { }); } // { check: true/false } (body体) +// 进路数据处理删除扣车 +export function deleteDetain(mapId) { + return request({ + url: `/api/draftMap/${mapId}/route/handle/standHoldList/delete`, + method: 'put' + }); +} +// 进路数据处理不办延续保护 +export function noOverlap(mapId) { + return request({ + url: `/api/draftMap/${mapId}/route/handle/setOverlapInCtc/false`, + method: 'put' + }); +} diff --git a/src/utils/baseUrl.js b/src/utils/baseUrl.js index bc303bcc8..8b75cd8e6 100644 --- a/src/utils/baseUrl.js +++ b/src/utils/baseUrl.js @@ -2,11 +2,11 @@ export function getBaseUrl() { let BASE_API; if (process.env.NODE_ENV === 'development') { // BASE_API = 'https://joylink.club/jlcloud'; - BASE_API = 'https://test.joylink.club/jlcloud'; + // BASE_API = 'https://test.joylink.club/jlcloud'; // BASE_API = 'http://192.168.8.107:9000'; // 袁琪 // BASE_API = 'http://192.168.2.175:9000'; // 旭强 有线 // BASE_API = 'http://192.168.8.114:9000'; // 旭强 无线 - // BASE_API = 'http://192.168.2.183:9000'; // 张赛 + BASE_API = 'http://192.168.2.183:9000'; // 张赛 // BASE_API = 'http://192.168.8.140:9000'; // 杜康 // BASE_API = 'http://b29z135112.zicp.vip'; // BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康 diff --git a/src/views/newMap/newMapdraft/dataRelation/routeoperate/detail.vue b/src/views/newMap/newMapdraft/dataRelation/routeoperate/detail.vue index c12f4ef4d..648320f07 100644 --- a/src/views/newMap/newMapdraft/dataRelation/routeoperate/detail.vue +++ b/src/views/newMap/newMapdraft/dataRelation/routeoperate/detail.vue @@ -1,6 +1,6 @@