From b74b070367732e573001c48f64f54ab74a93352f Mon Sep 17 00:00:00 2001
From: joylink_cuiweidong <364937672@qq.com>
Date: Mon, 25 May 2020 09:29:34 +0800
Subject: [PATCH 01/85] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E7=B3=BB=E7=BB=9F?=
=?UTF-8?q?=E4=BB=A3=E7=A0=81=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/jsxt/competition/examDetail.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/jsxt/competition/examDetail.vue b/src/views/jsxt/competition/examDetail.vue
index 58bd26796..e47c98d32 100644
--- a/src/views/jsxt/competition/examDetail.vue
+++ b/src/views/jsxt/competition/examDetail.vue
@@ -157,7 +157,7 @@ export default {
} else {
// this.disabled = true;
getCompetitionPractical(this.$route.query.raceId).then(()=>{
- participantCreatTrainingRoom(1, {mapId: 41, prdType: '02'}).then(resp => {
+ participantCreatTrainingRoom(this.$route.query.raceId, {mapId: 41, prdType: '02'}).then(resp => {
const query = { lineCode: '11', mapId: '41', group: resp.data, roomId: '385' };
this.$router.replace({ path: `/jointTrainingNew`, query: query});
});
From aa6d821fedc27c262df2d3a76cc0697f067bfd03 Mon Sep 17 00:00:00 2001
From: zyy <1787816799@qq.com>
Date: Mon, 25 May 2020 09:40:14 +0800
Subject: [PATCH 02/85] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A3=81=E5=88=A4?=
=?UTF-8?q?=E5=B9=B3=E5=8F=B0=E4=BA=BA=E5=91=98=E5=88=97=E8=A1=A8=E5=AD=97?=
=?UTF-8?q?=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/competition.js | 7 ++---
src/views/jsxt/refereeList/index.vue | 41 ++++++----------------------
2 files changed, 11 insertions(+), 37 deletions(-)
diff --git a/src/api/competition.js b/src/api/competition.js
index 1e81796d6..3e1b0bec3 100644
--- a/src/api/competition.js
+++ b/src/api/competition.js
@@ -72,11 +72,10 @@ export function getIsSignUp(raceId) {
}
/** 分页查询竞赛报名人员 */
-export function getRaceUserList(params) {
+export function getRaceUserList(raceId) {
return request({
- url: `/api/race/${params.raceId}/raceUser`,
- method: 'get',
- params
+ url: `/api/race/${raceId}/raceUser`,
+ method: 'get'
});
}
diff --git a/src/views/jsxt/refereeList/index.vue b/src/views/jsxt/refereeList/index.vue
index 909e7f369..1a1abbc6e 100644
--- a/src/views/jsxt/refereeList/index.vue
+++ b/src/views/jsxt/refereeList/index.vue
@@ -8,6 +8,7 @@
+
diff --git a/src/jmapNew/theme/xian_01/menus/menuTrain.vue b/src/jmapNew/theme/xian_01/menus/menuTrain.vue
index a211af021..4f5507dc0 100644
--- a/src/jmapNew/theme/xian_01/menus/menuTrain.vue
+++ b/src/jmapNew/theme/xian_01/menus/menuTrain.vue
@@ -7,6 +7,7 @@
+
@@ -22,6 +23,7 @@ import TrainDelete from './dialog/trainDelete';
import TrainMove from './dialog/trainMove';
import TrainSwitch from './dialog/trainSwitch';
import TrainEditNumber from './dialog/trainEditNumber';
+import TrainDetail from './dialog/trainDetail';
import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler';
export default {
@@ -33,7 +35,8 @@ export default {
TrainDelete,
TrainMove,
TrainSwitch,
- TrainEditNumber
+ TrainEditNumber,
+ TrainDetail
},
props: {
selected: {
@@ -81,17 +84,17 @@ export default {
},
{
label: '标记ATP切除',
- handler: this.undeveloped(),
+ handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_TAG_ATP_CUT
},
{
label: '标记ATP激活',
- handler: this.undeveloped(),
+ handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_TAG_ATP_RECOVER
},
{
label: '查看列车详细运行信息',
- handler: this.undeveloped(),
+ handler: this.checkTrainDetails,
cmdType: CMD.TrainWindow.CMD_TRAIN_INFO
}
]
@@ -322,7 +325,6 @@ export default {
switchTrainId() {
const step = {
start: true,
-
operation: OperationEvent.Train.switchTrainId.menu.operation,
param: {
code: this.selected.code
@@ -334,6 +336,22 @@ export default {
this.$refs.trainSwitch.doShow(step, this.selected);
}
});
+ },
+ checkTrainDetails() {
+ const step = {
+ start: true,
+ code: this.selected.code,
+ operation: OperationEvent.Train.trainDetailInfo.menu.operation,
+ param: {
+ code: this.selected.code
+ }
+ };
+ this.$store.dispatch('training/nextNew', step).then(({ valid }) => {
+ if (valid) {
+ this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
+ this.$refs.trainDetail.doShow(step, this.selected);
+ }
+ });
}
}
};
diff --git a/src/scripts/ConstDic.js b/src/scripts/ConstDic.js
index 4b05c1047..9ebfc5c2b 100644
--- a/src/scripts/ConstDic.js
+++ b/src/scripts/ConstDic.js
@@ -2211,7 +2211,12 @@ export const IbpShowCondition = {
Show_Open_Screen_Door: {statusKey: 'screenDoorOpenStatus', statusValue:['02'], defaultStatus: 'close'},
Show_Close_Screen_Door: {statusKey: 'screenDoorOpenStatus', statusValue: ['01'], defaultStatus: 'open'}
};
-
+/** 列车类型 */
+export const TrainType = {
+ PLAN: '计划车',
+ HEAD: '头码车',
+ MANUAL: '人工车'
+};
export const UrlConfig = {
display: '/display',
displayNew: '/displayNew',
From 663f25cddc1e4ae0829fe0c5d5ef18dc71cfbcf3 Mon Sep 17 00:00:00 2001
From: joylink_cuiweidong <364937672@qq.com>
Date: Mon, 25 May 2020 16:56:00 +0800
Subject: [PATCH 24/85] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E4=BB=A3=E7=A0=81?=
=?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/jsxt/refereeList/index.vue | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/views/jsxt/refereeList/index.vue b/src/views/jsxt/refereeList/index.vue
index 6d65a8a2e..48c92a888 100644
--- a/src/views/jsxt/refereeList/index.vue
+++ b/src/views/jsxt/refereeList/index.vue
@@ -108,7 +108,8 @@ export default {
{ text: '导入试题', handler: this.handleAdd }
]
},
- isLeaving:false
+ isLeaving:false,
+ inter:null
};
},
computed: {
@@ -162,7 +163,8 @@ export default {
},
afterQuery(data) {
- setTimeout(() => {
+ clearTimeout(this.inter);
+ this.inter = setTimeout(() => {
if (!this.isLeaving) {
this.refresh();
}
From fe45d9b1ac7b338f77b88d2078edba973763511b Mon Sep 17 00:00:00 2001
From: fan <18706759286@163.com>
Date: Mon, 25 May 2020 17:07:58 +0800
Subject: [PATCH 25/85] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=89=A3=E8=BD=A6?=
=?UTF-8?q?=E8=B7=B3=E5=81=9C=E5=91=BD=E4=BB=A4=E6=8F=90=E7=A4=BA=E6=8D=A2?=
=?UTF-8?q?=E8=A1=8C=E7=AC=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/components/StatusIcon/statusIcon.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/components/StatusIcon/statusIcon.vue b/src/views/components/StatusIcon/statusIcon.vue
index 87ce1efed..0dd3a0901 100644
--- a/src/views/components/StatusIcon/statusIcon.vue
+++ b/src/views/components/StatusIcon/statusIcon.vue
@@ -70,7 +70,7 @@ export default {
const station = this.$store.getters['map/getDeviceByCode'](stand.stationCode);
const dir = stand.right ? '上行站台' : '下行站台';
if (stand) {
- this.tip = this.tip + station.name + ':
' + dir + '站台存在扣车命令';
+ this.tip = this.tip + station.name + ':
' + dir + '站台存在扣车命令
';
}
});
}
@@ -89,7 +89,7 @@ export default {
const station = this.$store.getters['map/getDeviceByCode'](stand.stationCode);
const dir = stand.right ? '上行站台' : '下行站台';
if (stand) {
- this.tip = this.tip + station.name + ':
' + dir + '站台存在跳停命令';
+ this.tip = this.tip + station.name + ':
' + dir + '站台存在跳停命令
';
}
});
}
From f329e30049e14562ae074dd2beb8717f12a17dcd Mon Sep 17 00:00:00 2001
From: zyy <1787816799@qq.com>
Date: Mon, 25 May 2020 17:57:24 +0800
Subject: [PATCH 26/85] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A5=BF=E5=AE=89?=
=?UTF-8?q?=E4=B8=80=E4=B8=89=20=E5=8F=B7=E7=BA=BF=E8=B7=AF=20=E5=8F=B3?=
=?UTF-8?q?=E9=94=AE=E6=93=8D=E4=BD=9C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/PopMenu/index.vue | 8 +-
src/jmapNew/theme/xian_01/menus/index.vue | 15 ++++
.../theme/xian_01/menus/menuSection.vue | 2 +-
.../theme/xian_01/menus/menuSignal.vue | 2 +-
.../theme/xian_01/menus/menuStation.vue | 2 +-
.../theme/xian_01/menus/menuStationStand.vue | 4 +-
.../theme/xian_01/menus/menuSwitch.vue | 2 +-
src/jmapNew/theme/xian_01/menus/menuTrain.vue | 86 +++++++++----------
src/utils/baseUrl.js | 4 +-
.../newMap/displayNew/chatView/chatBox.vue | 4 +-
10 files changed, 73 insertions(+), 56 deletions(-)
diff --git a/src/components/PopMenu/index.vue b/src/components/PopMenu/index.vue
index f982ae27a..c8d1baaf5 100644
--- a/src/components/PopMenu/index.vue
+++ b/src/components/PopMenu/index.vue
@@ -1,5 +1,5 @@
-