调整宁波一号线实训步骤定义
This commit is contained in:
parent
4fb316277d
commit
dd26f5fd96
@ -1,8 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog class="ningbo-01__systerm confirm-control-speed" :title="title" :visible.sync="show" width="540px"
|
<el-dialog
|
||||||
:before-close="doClose" :zIndex="2000" :modal="false" :close-on-click-modal="false" append-to-body v-dialogDrag>
|
v-dialogDrag
|
||||||
|
class="ningbo-01__systerm confirm-control-speed"
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="show"
|
||||||
|
width="540px"
|
||||||
|
:before-close="doClose"
|
||||||
|
:z-index="2000"
|
||||||
|
:modal="false"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
append-to-body
|
||||||
|
>
|
||||||
<div style="height: 60px; padding-left: 20px">
|
<div style="height: 60px; padding-left: 20px">
|
||||||
<span style="font-size: 18px">{{message}}</span>
|
<span style="font-size: 18px">{{ message }}</span>
|
||||||
</div>
|
</div>
|
||||||
<el-row justify="center" class="button-group">
|
<el-row justify="center" class="button-group">
|
||||||
<el-col :span="6" :offset="6">
|
<el-col :span="6" :offset="6">
|
||||||
@ -16,9 +26,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { MapDeviceType, OperationEvent } from '@/scripts/ConstDic';
|
import { MapDeviceType, OperationEvent } from '@/scripts/ConstDic';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ConfirmControlSpeed',
|
name: 'ConfirmControlSpeed',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -26,31 +36,29 @@
|
|||||||
loading: false,
|
loading: false,
|
||||||
type: '',
|
type: '',
|
||||||
operation: '',
|
operation: '',
|
||||||
message: '',
|
message: ''
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
show() {
|
show() {
|
||||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||||
},
|
},
|
||||||
title() {
|
title() {
|
||||||
if (this.dialogShow) {
|
|
||||||
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
||||||
return "区段设置限速";
|
return '区段设置限速';
|
||||||
} else if (this.operation === OperationEvent.Section.cancelSpeed.order.operation) {
|
} else if (this.operation === OperationEvent.Section.cancelSpeed.order.operation) {
|
||||||
return "区段取消限速";
|
return '区段取消限速';
|
||||||
} else if (this.operation === OperationEvent.Switch.setSpeed.order.operation) {
|
} else if (this.operation === OperationEvent.Switch.setSpeed.order.operation) {
|
||||||
return "道岔设置限速";
|
return '道岔设置限速';
|
||||||
} else if (this.operation === OperationEvent.Switch.cancelSpeed.order.operation) {
|
} else if (this.operation === OperationEvent.Switch.cancelSpeed.order.operation) {
|
||||||
return "道岔取消限速";
|
return '道岔取消限速';
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
domIdCancel() {
|
domIdCancel() {
|
||||||
return this.dialogShow ? OperationEvent.Command.cancel.menu.domId : '';
|
return this.dialogShow ? OperationEvent.Command.cancel.menu.domId : '';
|
||||||
},
|
},
|
||||||
domIdConfirm() {
|
domIdConfirm() {
|
||||||
if (this.dialogShow) {
|
|
||||||
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
||||||
/** 区段设置限速*/
|
/** 区段设置限速*/
|
||||||
return OperationEvent.Section.setSpeed.confirm.domId;
|
return OperationEvent.Section.setSpeed.confirm.domId;
|
||||||
@ -64,13 +72,13 @@
|
|||||||
/** 道岔取消限速*/
|
/** 道岔取消限速*/
|
||||||
return OperationEvent.Switch.cancelSpeed.confirm.domId;
|
return OperationEvent.Switch.cancelSpeed.confirm.domId;
|
||||||
}
|
}
|
||||||
}
|
return '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$store.dispatch('training/tipReload');
|
this.$store.dispatch('training/tipReload');
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
doShow(operate) {
|
doShow(operate) {
|
||||||
@ -92,9 +100,9 @@
|
|||||||
this.$store.dispatch('training/emitTipFresh');
|
this.$store.dispatch('training/emitTipFresh');
|
||||||
},
|
},
|
||||||
commit() {
|
commit() {
|
||||||
let operate = {
|
const operate = {
|
||||||
type: this.type
|
operation: ''
|
||||||
}
|
};
|
||||||
|
|
||||||
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
if (this.operation === OperationEvent.Section.setSpeed.order.operation) {
|
||||||
/** 区段设置限速*/
|
/** 区段设置限速*/
|
||||||
@ -111,24 +119,24 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.$store.dispatch('training/next', operate).then(({ valid }) => {
|
this.$store.dispatch('training/nextNew', operate).then(({ valid }) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.$emit('setOperate', { step: 1, success: true });
|
this.$emit('setOperate', { step: 1, success: true });
|
||||||
this.doClose();
|
this.doClose();
|
||||||
}
|
}
|
||||||
}).catch((error) => {
|
}).catch(() => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.$emit('setOperate', { step: 0, success: false });
|
this.$emit('setOperate', { step: 0, success: false });
|
||||||
this.doClose();
|
this.doClose();
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
cancel() {
|
cancel() {
|
||||||
let operate = {
|
const operate = {
|
||||||
type: this.type,
|
type: this.type,
|
||||||
operation: OperationEvent.Command.cancel.menu.operation,
|
operation: OperationEvent.Command.cancel.menu.operation
|
||||||
}
|
};
|
||||||
|
|
||||||
this.$store.dispatch('training/next', operate).then(({ valid }) => {
|
this.$store.dispatch('training/next', operate).then(({ valid }) => {
|
||||||
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
||||||
@ -142,7 +150,7 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
@ -41,8 +41,6 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="status" label="控制状态" width="180">
|
<el-table-column prop="status" label="控制状态" width="180">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<!-- <span v-if="scope.row.controlType == '01'">自动(不进行冲突检测)</span>
|
|
||||||
<span v-else>人工</span> -->
|
|
||||||
{{ scope.row.atsControl == '0' ? '人工' : '自动' }}
|
{{ scope.row.atsControl == '0' ? '人工' : '自动' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -134,7 +132,7 @@ export default {
|
|||||||
commit() {
|
commit() {
|
||||||
const operate = {
|
const operate = {
|
||||||
over: true,
|
over: true,
|
||||||
operation: OperationEvent.Signal.detail.menu.operation,
|
operation: OperationEvent.Signal.detail.menu.operation
|
||||||
};
|
};
|
||||||
|
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
@ -93,16 +93,36 @@ export default {
|
|||||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||||
},
|
},
|
||||||
domIdChoose() {
|
domIdChoose() {
|
||||||
return this.dialogShow ? OperationEvent.Section.unlock.choose.domId : '';
|
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Section.unlock.choose.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Section.fault.menu.operation) {
|
||||||
|
return OperationEvent.Section.fault.choose.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
confirmId1() {
|
confirmId1() {
|
||||||
return this.dialogShow ? OperationEvent.Section.unlock.confirm1.domId : '';
|
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Section.unlock.confirm1.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Section.fault.menu.operation) {
|
||||||
|
return OperationEvent.Section.fault.confirm1.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
confirmId2() {
|
confirmId2() {
|
||||||
return this.dialogShow ? OperationEvent.Section.unlock.confirm2.domId : '';
|
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Section.unlock.confirm2.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Section.fault.menu.operation) {
|
||||||
|
return OperationEvent.Section.fault.confirm2.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
domIdConfirm() {
|
domIdConfirm() {
|
||||||
return this.dialogShow ? OperationEvent.Section.unlock.confirm.domId : '';
|
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Section.unlock.confirm.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Section.fault.menu.operation) {
|
||||||
|
return OperationEvent.Section.fault.confirm.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
title() {
|
title() {
|
||||||
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
if (this.operation == OperationEvent.Section.unlock.menu.operation) {
|
||||||
@ -218,6 +238,7 @@ export default {
|
|||||||
confirm2() {
|
confirm2() {
|
||||||
if (this.messageText2 == this.sectionCode) {
|
if (this.messageText2 == this.sectionCode) {
|
||||||
const operate = {
|
const operate = {
|
||||||
|
over: true,
|
||||||
operation: '',
|
operation: '',
|
||||||
cmdType: ''
|
cmdType: ''
|
||||||
};
|
};
|
||||||
@ -246,7 +267,6 @@ export default {
|
|||||||
},
|
},
|
||||||
commit() {
|
commit() {
|
||||||
const operate = {
|
const operate = {
|
||||||
over: true,
|
|
||||||
operation: ''
|
operation: ''
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -238,7 +238,7 @@ export default {
|
|||||||
return '';
|
return '';
|
||||||
},
|
},
|
||||||
domIdClose() {
|
domIdClose() {
|
||||||
return this.dialogShow ? OperationEvent.Command.cancel.menu.domId : '';
|
return this.dialogShow ? OperationEvent.Command.close.menu.domId : '';
|
||||||
},
|
},
|
||||||
isCancelSpeed() {
|
isCancelSpeed() {
|
||||||
return this.operation == OperationEvent.Section.cancelSpeed.menu.operation || this.operation == OperationEvent.Switch.cancelSpeed.menu.operation;
|
return this.operation == OperationEvent.Section.cancelSpeed.menu.operation || this.operation == OperationEvent.Switch.cancelSpeed.menu.operation;
|
||||||
@ -350,7 +350,8 @@ export default {
|
|||||||
},
|
},
|
||||||
speedSelectChange(val) {
|
speedSelectChange(val) {
|
||||||
const operate = {
|
const operate = {
|
||||||
operation: ''
|
operation: '',
|
||||||
|
val: val
|
||||||
};
|
};
|
||||||
|
|
||||||
if (this.operation == OperationEvent.Section.setSpeed.menu.operation) {
|
if (this.operation == OperationEvent.Section.setSpeed.menu.operation) {
|
||||||
@ -529,7 +530,6 @@ export default {
|
|||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
const operate = {
|
const operate = {
|
||||||
type: this.type,
|
|
||||||
operation: OperationEvent.Command.close.menu.operation
|
operation: OperationEvent.Command.close.menu.operation
|
||||||
};
|
};
|
||||||
this.writeRecord({ order: ++this.order, date: now(), context: '点击关闭', result: '' });
|
this.writeRecord({ order: ++this.order, date: now(), context: '点击关闭', result: '' });
|
||||||
|
@ -76,7 +76,12 @@ export default {
|
|||||||
return this.dialogShow ? OperationHandler.getDomIdByOperation(this.operation) : '';
|
return this.dialogShow ? OperationHandler.getDomIdByOperation(this.operation) : '';
|
||||||
},
|
},
|
||||||
chooseId() {
|
chooseId() {
|
||||||
return this.dialogShow ? OperationEvent.StationStand.setBulkBuckleTrain.choose.domId : '';
|
if (this.operation == OperationEvent.StationStand.setBulkBuckleTrain.menu.operation) {
|
||||||
|
return OperationEvent.StationStand.setBulkBuckleTrain.choose.domId;
|
||||||
|
} else if (this.operation == OperationEvent.StationStand.cancelBulkBuckleTrain.menu.operation) {
|
||||||
|
return OperationEvent.StationStand.cancelBulkBuckleTrain.choose.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
title() {
|
title() {
|
||||||
if (this.operation == OperationEvent.StationStand.setBulkBuckleTrain.menu.operation) {
|
if (this.operation == OperationEvent.StationStand.setBulkBuckleTrain.menu.operation) {
|
||||||
|
@ -93,16 +93,36 @@ export default {
|
|||||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||||
},
|
},
|
||||||
domIdChoose() {
|
domIdChoose() {
|
||||||
return this.dialogShow ? OperationEvent.Switch.unlock.choose.domId : '';
|
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unlock.choose.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Switch.unblock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unblock.choose.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
confirmId1() {
|
confirmId1() {
|
||||||
return this.dialogShow ? OperationEvent.Switch.unlock.confirm1.domId : '';
|
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unlock.confirm1.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Switch.unblock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unblock.confirm1.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
confirmId2() {
|
confirmId2() {
|
||||||
return this.dialogShow ? OperationEvent.Switch.unlock.confirm2.domId : '';
|
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unlock.confirm2.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Switch.unblock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unblock.confirm2.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
domIdConfirm() {
|
domIdConfirm() {
|
||||||
return this.dialogShow ? OperationEvent.Switch.unlock.confirm.domId : '';
|
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unlock.confirm.domId;
|
||||||
|
} else if (this.operation == OperationEvent.Switch.unblock.menu.operation) {
|
||||||
|
return OperationEvent.Switch.unblock.confirm.domId;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
title() {
|
title() {
|
||||||
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
if (this.operation == OperationEvent.Switch.unlock.menu.operation) {
|
||||||
|
@ -5,18 +5,29 @@
|
|||||||
// {id: "4", trainingType: "02", name: "进路编号"}
|
// {id: "4", trainingType: "02", name: "进路编号"}
|
||||||
// {id: "5", trainingType: "02", name: "信号机名称"}
|
// {id: "5", trainingType: "02", name: "信号机名称"}
|
||||||
// {id: "6", trainingType: "02", name: "信号机编号"}
|
// {id: "6", trainingType: "02", name: "信号机编号"}
|
||||||
|
|
||||||
// {id: "7", trainingType: "03", name: "道岔名称"}
|
// {id: "7", trainingType: "03", name: "道岔名称"}
|
||||||
// {id: "17", trainingType: "03", name: "道岔编码"}
|
// {id: "17", trainingType: "03", name: "道岔编码"}
|
||||||
|
// {id: "15", trainingType: "03", name: "道岔位置"}
|
||||||
|
// {id: "16", trainingType: "03", name: "道岔位置(反)"}
|
||||||
|
// {id: "21", trainingType: "03", name: "车站名称"}
|
||||||
|
// {id: "23", trainingType: "03", name: "车站编号"}
|
||||||
|
// {id: "24", trainingType: "03", name: "道岔计轴区段编号"}
|
||||||
|
// {id: "25", trainingType: "03", name: "道岔计轴区段名称"}
|
||||||
|
|
||||||
// {id: "8", trainingType: "04", name: "物理区段名称"}
|
// {id: "8", trainingType: "04", name: "物理区段名称"}
|
||||||
// {id: "9", trainingType: "04", name: "逻辑区段名称"}
|
// {id: "9", trainingType: "04", name: "逻辑区段名称"}
|
||||||
// {id: "18", trainingType: "04", name: "逻辑区段编码"}
|
// {id: "18", trainingType: "04", name: "逻辑区段编码"}
|
||||||
|
// {id: "19", trainingType: "04", name: "区段编号"}
|
||||||
|
// {id: "20", trainingType: "04", name: "车站名称"}
|
||||||
|
// {id: "22", trainingType: "04", name: "车站编号"}
|
||||||
|
|
||||||
// {id: "10", trainingType: "05", name: "车站名称"}
|
// {id: "10", trainingType: "05", name: "车站名称"}
|
||||||
// {id: "11", trainingType: "05", name: "站台行驶方向编号"}
|
// {id: "11", trainingType: "05", name: "站台行驶方向编号"}
|
||||||
// {id: "12", trainingType: "05", name: "站台行驶方向"}
|
// {id: "12", trainingType: "05", name: "站台行驶方向"}
|
||||||
// {id: "13", trainingType: "05", name: "站台行驶方向编号(反)"}
|
// {id: "13", trainingType: "05", name: "站台行驶方向编号(反)"}
|
||||||
// {id: "14", trainingType: "05", name: "站台行驶方向(反)"}
|
// {id: "14", trainingType: "05", name: "站台行驶方向(反)"}
|
||||||
// {id: "15", trainingType: "03", name: "道岔位置"}
|
|
||||||
// {id: "16", trainingType: "03", name: "道岔位置(反)"}
|
|
||||||
export const OperationList = {
|
export const OperationList = {
|
||||||
'01': {
|
'01': {
|
||||||
list: []
|
list: []
|
||||||
@ -3684,13 +3695,13 @@ export const OperationList = {
|
|||||||
trainingName: '区段故障解锁({8}{9})',
|
trainingName: '区段故障解锁({8}{9})',
|
||||||
trainingRemark: '区段故障解锁',
|
trainingRemark: '区段故障解锁',
|
||||||
trainingType: '04',
|
trainingType: '04',
|
||||||
productTypes: ['02'],
|
productTypes: ['01'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '03', orderNum: 1, operateCode: '402', tip: '鼠标右键菜单选择【区段故障解锁】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '402', tip: '鼠标右键菜单选择【区段故障解锁】' },
|
||||||
{ deviceType: '03', orderNum: 2, operateCode: '4024', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4024', tip: '鼠标左键点击【确定】按钮' },
|
||||||
{ deviceType: '03', orderNum: 3, operateCode: '4028', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4028', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
||||||
{ deviceType: '03', orderNum: 4, operateCode: '4025', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4025', tip: '鼠标左键点击【确定】按钮' },
|
||||||
{ deviceType: '03', orderNum: 5, operateCode: '402', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 5, operateCode: '4023', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -3731,7 +3742,7 @@ export const OperationList = {
|
|||||||
trainingType: '04',
|
trainingType: '04',
|
||||||
productTypes: ['02'],
|
productTypes: ['02'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【区段设置限速】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' },
|
||||||
{ deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值5】', val: '5' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值5】', val: '5' },
|
||||||
{ deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' },
|
||||||
{ deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' },
|
||||||
@ -3750,7 +3761,7 @@ export const OperationList = {
|
|||||||
trainingType: '04',
|
trainingType: '04',
|
||||||
productTypes: ['02'],
|
productTypes: ['02'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【区段设置限速】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '407', tip: '鼠标右键菜单选择【设置临时限速】' },
|
||||||
{ deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值自动】', val: '0' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4076', tip: '鼠标左键选择【限速值自动】', val: '0' },
|
||||||
{ deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4071', tip: '鼠标左键点击【下达】按钮' },
|
||||||
{ deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4072', tip: '鼠标左键点击【确认】按钮' },
|
||||||
@ -3773,54 +3784,54 @@ export const OperationList = {
|
|||||||
{ deviceType: '03', orderNum: 2, operateCode: '403', tip: '鼠标左键点击【确定】按钮' }
|
{ deviceType: '03', orderNum: 2, operateCode: '403', tip: '鼠标左键点击【确定】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0406',
|
operateType: '0406',
|
||||||
// skinCode: '06',
|
skinCode: '06',
|
||||||
// trainingName: '区段解封({8}{9})',
|
trainingName: '区段解封({8}{9})',
|
||||||
// trainingRemark: '区段解封功能',
|
trainingRemark: '区段解封功能',
|
||||||
// trainingType: '04',
|
trainingType: '04',
|
||||||
// productTypes: ['01'],
|
productTypes: ['01'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '404', tip: '鼠标右键菜单选择【区段解封】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '404', tip: '鼠标右键菜单选择【区段解封】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '4043', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4043', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '4046', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4046', tip: '鼠标左键选择({8}{9})区段', val: '{19}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '4044', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4044', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '404', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 5, operateCode: '4042', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// },
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0409',
|
operateType: '0409',
|
||||||
// skinCode: '02',
|
skinCode: '06',
|
||||||
// trainingName: '确认计轴有效({8}{9})',
|
trainingName: '确认计轴有效({8}{9})',
|
||||||
// trainingRemark: '确认计轴有效功能',
|
trainingRemark: '确认计轴有效功能',
|
||||||
// trainingType: '04',
|
trainingType: '04',
|
||||||
// productTypes: ['02'],
|
productTypes: ['02'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{10}', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{20}', val: '{22}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({8}{9})', val: '' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({8}{9})', val: '{19}' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' },
|
||||||
// { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// }
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
maxDuration: 15,
|
maxDuration: 15,
|
||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
operateType: '0313',
|
operateType: '0312',
|
||||||
skinCode: '06',
|
skinCode: '06',
|
||||||
trainingName: '定操({7})',
|
trainingName: '定操({7})',
|
||||||
trainingRemark: '定操({7})',
|
trainingRemark: '定操({7})',
|
||||||
trainingType: '03',
|
trainingType: '03',
|
||||||
productTypes: ['01', '02'],
|
productTypes: ['01', '02'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '02', orderNum: 1, operateCode: '1010', tip: '鼠标左键菜单选择【定操】' },
|
{ deviceType: '02', orderNum: 1, operateCode: '101', tip: '鼠标左键菜单选择【定操】' },
|
||||||
{ deviceType: '02', orderNum: 2, operateCode: '1010', tip: '鼠标左键点击【{7}】按钮' }
|
{ deviceType: '02', orderNum: 2, operateCode: '101', tip: '鼠标左键点击【{7}】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -3865,24 +3876,24 @@ export const OperationList = {
|
|||||||
{ deviceType: '02', orderNum: 2, operateCode: '112', tip: '鼠标左键点击【确定】按钮' }
|
{ deviceType: '02', orderNum: 2, operateCode: '112', tip: '鼠标左键点击【确定】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0314',
|
operateType: '0314',
|
||||||
// skinCode: '02',
|
skinCode: '06',
|
||||||
// trainingName: '确认计轴有效({8}{9})',
|
trainingName: '确认计轴有效({8}{9})',
|
||||||
// trainingRemark: '确认计轴有效功能',
|
trainingRemark: '确认计轴有效功能',
|
||||||
// trainingType: '04',
|
trainingType: '03',
|
||||||
// productTypes: ['02'],
|
productTypes: ['02'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '412', tip: '鼠标右键菜单选择【确认计轴有效】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' },
|
{ deviceType: '03', orderNum: 2, operateCode: '4123', tip: '鼠标左键选择【确认】' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{10}', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '4121', tip: '鼠标左键选择{21}', val: '{23}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({8}{9})', val: '' },
|
{ deviceType: '03', orderNum: 4, operateCode: '4122', tip: '鼠标左键选择({25})', val: '{24}' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '03', orderNum: 5, operateCode: '4124', tip: '鼠标左键点击【确认】按钮' },
|
||||||
// { deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 6, operateCode: '000', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// }
|
},
|
||||||
{
|
{
|
||||||
maxDuration: 15,
|
maxDuration: 15,
|
||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
@ -3897,23 +3908,23 @@ export const OperationList = {
|
|||||||
{ deviceType: '02', orderNum: 2, operateCode: '103', tip: '鼠标左键点击【确定】按钮' }
|
{ deviceType: '02', orderNum: 2, operateCode: '103', tip: '鼠标左键点击【确定】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0302',
|
operateType: '0302',
|
||||||
// skinCode: '06',
|
skinCode: '06',
|
||||||
// trainingName: '道岔单解({7})',
|
trainingName: '道岔单解({7})',
|
||||||
// trainingRemark: '道岔单解功能',
|
trainingRemark: '道岔单解功能',
|
||||||
// trainingType: '03',
|
trainingType: '03',
|
||||||
// productTypes: ['01'],
|
productTypes: ['01'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '104', tip: '鼠标右键菜单选择【区段解封】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '104', tip: '鼠标右键菜单选择【区段解封】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '1043', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 2, operateCode: '1043', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '1046', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '1046', tip: '鼠标左键选择({7})区段', val: '{17}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '1044', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '1044', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '104', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 5, operateCode: '1042', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
maxDuration: 15,
|
maxDuration: 15,
|
||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
@ -3928,34 +3939,34 @@ export const OperationList = {
|
|||||||
{ deviceType: '02', orderNum: 2, operateCode: '105', tip: '鼠标左键点击【确定】按钮' }
|
{ deviceType: '02', orderNum: 2, operateCode: '105', tip: '鼠标左键点击【确定】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0304',
|
operateType: '0304',
|
||||||
// skinCode: '06',
|
skinCode: '06',
|
||||||
// trainingName: '道岔解封({7})',
|
trainingName: '道岔解封({7})',
|
||||||
// trainingRemark: '道岔解封功能',
|
trainingRemark: '道岔解封功能',
|
||||||
// trainingType: '03',
|
trainingType: '03',
|
||||||
// productTypes: ['01'],
|
productTypes: ['01'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '106', tip: '鼠标右键菜单选择【区段解封】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '106', tip: '鼠标右键菜单选择【区段解封】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '1063', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 2, operateCode: '1063', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '1066', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '1066', tip: '鼠标左键选择({7})区段', val: '{17}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '1064', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '1064', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '106', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 5, operateCode: '1062', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
maxDuration: 15,
|
maxDuration: 15,
|
||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
operateType: '0310',
|
operateType: '0310',
|
||||||
skinCode: '06',
|
skinCode: '06',
|
||||||
trainingName: '道岔区段设置限速({7})',
|
trainingName: '设置临时限速({7})',
|
||||||
trainingRemark: '道岔区段设置限速功能(限速值:10)',
|
trainingRemark: '设置临时限速功能(限速值:10)',
|
||||||
trainingType: '03',
|
trainingType: '03',
|
||||||
productTypes: ['01', '02'],
|
productTypes: ['01', '02'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【道岔区段设置限速】' },
|
{ deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' },
|
||||||
{ deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值5】', val: '10' },
|
{ deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值5】', val: '10' },
|
||||||
{ deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' },
|
{ deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' },
|
||||||
{ deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' },
|
||||||
@ -3969,12 +3980,12 @@ export const OperationList = {
|
|||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
operateType: '0310',
|
operateType: '0310',
|
||||||
skinCode: '06',
|
skinCode: '06',
|
||||||
trainingName: '道岔区段设置限速({7})',
|
trainingName: '设置临时限速({7})',
|
||||||
trainingRemark: '道岔区段设置限速功能(限速值:不限)',
|
trainingRemark: '设置临时限速功能(限速值:不限)',
|
||||||
trainingType: '03',
|
trainingType: '03',
|
||||||
productTypes: ['01', '02'],
|
productTypes: ['01', '02'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【道岔区段设置限速】' },
|
{ deviceType: '02', orderNum: 1, operateCode: '113', tip: '鼠标右键菜单选择【设置临时限速】' },
|
||||||
{ deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值: 不限】', val: '0' },
|
{ deviceType: '02', orderNum: 2, operateCode: '1136', tip: '鼠标左键选择【限速值: 不限】', val: '0' },
|
||||||
{ deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' },
|
{ deviceType: '02', orderNum: 3, operateCode: '1131', tip: '鼠标左键点击【下达】按钮' },
|
||||||
{ deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' },
|
{ deviceType: '02', orderNum: 4, operateCode: '1132', tip: '鼠标左键点击【确认】按钮' },
|
||||||
@ -4149,29 +4160,29 @@ export const OperationList = {
|
|||||||
trainingName: '信号封锁({5})',
|
trainingName: '信号封锁({5})',
|
||||||
trainingRemark: '信号封闭',
|
trainingRemark: '信号封闭',
|
||||||
trainingType: '02',
|
trainingType: '02',
|
||||||
productTypes: ['02'],
|
productTypes: ['01'],
|
||||||
stepVOList: [
|
stepVOList: [
|
||||||
{ deviceType: '04', orderNum: 1, operateCode: '306', tip: '鼠标右键菜单选择【信号封闭】' },
|
{ deviceType: '04', orderNum: 1, operateCode: '306', tip: '鼠标右键菜单选择【信号封闭】' },
|
||||||
{ deviceType: '04', orderNum: 2, operateCode: '306', tip: '鼠标左键点击【确定】按钮' }
|
{ deviceType: '04', orderNum: 2, operateCode: '306', tip: '鼠标左键点击【确定】按钮' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// maxDuration: 15,
|
maxDuration: 15,
|
||||||
// minDuration: 8,
|
minDuration: 8,
|
||||||
// operateType: '0204',
|
operateType: '0204',
|
||||||
// skinCode: '06',
|
skinCode: '06',
|
||||||
// trainingName: '信号解封({5})',
|
trainingName: '信号解封({5})',
|
||||||
// trainingRemark: '信号解封功能',
|
trainingRemark: '信号解封功能',
|
||||||
// trainingType: '02',
|
trainingType: '02',
|
||||||
// productTypes: ['01'],
|
productTypes: ['01'],
|
||||||
// stepVOList: [
|
stepVOList: [
|
||||||
// { deviceType: '03', orderNum: 1, operateCode: '307', tip: '鼠标右键菜单选择【信号解封】' },
|
{ deviceType: '03', orderNum: 1, operateCode: '307', tip: '鼠标右键菜单选择【信号解封】' },
|
||||||
// { deviceType: '03', orderNum: 2, operateCode: '3073', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 2, operateCode: '3073', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 3, operateCode: '3076', tip: '鼠标左键选择({8}{9})区段', val: '' },
|
{ deviceType: '03', orderNum: 3, operateCode: '3076', tip: '鼠标左键选择({5})区段', val: '{6}' },
|
||||||
// { deviceType: '03', orderNum: 4, operateCode: '3074', tip: '鼠标左键点击【确定】按钮' },
|
{ deviceType: '03', orderNum: 4, operateCode: '3074', tip: '鼠标左键点击【确定】按钮' },
|
||||||
// { deviceType: '03', orderNum: 5, operateCode: '307', tip: '鼠标左键点击【关闭】按钮' }
|
{ deviceType: '03', orderNum: 5, operateCode: '3072', tip: '鼠标左键点击【关闭】按钮' }
|
||||||
// ]
|
]
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
maxDuration: 15,
|
maxDuration: 15,
|
||||||
minDuration: 8,
|
minDuration: 8,
|
||||||
|
@ -1540,6 +1540,10 @@ export const OperationEvent = {
|
|||||||
menu: {
|
menu: {
|
||||||
operation: '516',
|
operation: '516',
|
||||||
domId: '_Tips-Stand-cancelBulkBuckleTrain-Menu'
|
domId: '_Tips-Stand-cancelBulkBuckleTrain-Menu'
|
||||||
|
},
|
||||||
|
choose: {
|
||||||
|
operation: '5161',
|
||||||
|
domId: '_Tips-Stand-cancelBulkBuckleTrain-Choose'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 区间列车数量限制
|
// 区间列车数量限制
|
||||||
|
@ -52,7 +52,7 @@ class ValidateHandler {
|
|||||||
const order = Handler.getOrder();
|
const order = Handler.getOrder();
|
||||||
|
|
||||||
let valid = false;
|
let valid = false;
|
||||||
debugger;
|
// debugger;
|
||||||
if (operate.over && steps.length == 1) { // 右键菜单直接发送校验
|
if (operate.over && steps.length == 1) { // 右键菜单直接发送校验
|
||||||
if (operate && steps[0] &&
|
if (operate && steps[0] &&
|
||||||
operate.code == steps[0].code &&
|
operate.code == steps[0].code &&
|
||||||
|
@ -133,7 +133,7 @@ export default {
|
|||||||
const domId = OperationHandler.getDomIdByOperation(step.operation);
|
const domId = OperationHandler.getDomIdByOperation(step.operation);
|
||||||
const btnDom = document.getElementById(domId);
|
const btnDom = document.getElementById(domId);
|
||||||
if (btnDom) {
|
if (btnDom) {
|
||||||
const offset = getDomOffset(btnDom, true);
|
const offset = getDomOffset(btnDom);
|
||||||
if (offset.x == 0 && offset.y == 0) {
|
if (offset.x == 0 && offset.y == 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user