代码调整
This commit is contained in:
parent
75d2ea8aed
commit
2c66d6aadf
@ -219,7 +219,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="5" :offset="1" v-if="sure">
|
<el-col v-if="sure" :span="5" :offset="1">
|
||||||
<fieldset style="position: absolute;top: 40%;">
|
<fieldset style="position: absolute;top: 40%;">
|
||||||
<legend class="card_title">命令</legend>
|
<legend class="card_title">命令</legend>
|
||||||
<el-radio-group v-model="command">
|
<el-radio-group v-model="command">
|
||||||
@ -73,13 +73,13 @@ export default {
|
|||||||
initCacheMap: {
|
initCacheMap: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
initInfo: {
|
initInfo: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateDone: {
|
updateDone: {
|
||||||
@ -103,7 +103,7 @@ export default {
|
|||||||
sure: false,
|
sure: false,
|
||||||
currentSelect: null,
|
currentSelect: null,
|
||||||
noInit: true,
|
noInit: true,
|
||||||
changeIgnore: false,
|
changeIgnore: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -111,7 +111,7 @@ export default {
|
|||||||
'sectionList'
|
'sectionList'
|
||||||
]),
|
]),
|
||||||
cmdType() {
|
cmdType() {
|
||||||
return ''
|
return '';
|
||||||
},
|
},
|
||||||
initSelect() {
|
initSelect() {
|
||||||
return this.initInfo.initSelect || {};
|
return this.initInfo.initSelect || {};
|
||||||
@ -123,7 +123,7 @@ export default {
|
|||||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||||
},
|
},
|
||||||
tempList() {
|
tempList() {
|
||||||
return this.sectionList.filter(el => ['01', '04'].includes(el.type) )
|
return this.sectionList.filter(el => ['01', '04'].includes(el.type) );
|
||||||
},
|
},
|
||||||
domIdChoose() {
|
domIdChoose() {
|
||||||
return this.dialogShow ? OperationEvent.Command.common.choose.domId : '';
|
return this.dialogShow ? OperationEvent.Command.common.choose.domId : '';
|
||||||
@ -162,7 +162,7 @@ export default {
|
|||||||
this.currentSelect = this.$store.getters['map/getDeviceByCode'](this.initSelect.code);
|
this.currentSelect = this.$store.getters['map/getDeviceByCode'](this.initSelect.code);
|
||||||
this.dialogShow = true;
|
this.dialogShow = true;
|
||||||
this.$nextTick(function () {
|
this.$nextTick(function () {
|
||||||
this.changeIgnore = sure
|
this.changeIgnore = sure;
|
||||||
this.$refs.table.setCurrentRow(sure ? this.tempList.find(el => el.code == this.initSelect.code) : null);
|
this.$refs.table.setCurrentRow(sure ? this.tempList.find(el => el.code == this.initSelect.code) : null);
|
||||||
this.$store.dispatch('training/emitTipFresh');
|
this.$store.dispatch('training/emitTipFresh');
|
||||||
});
|
});
|
||||||
@ -174,14 +174,14 @@ export default {
|
|||||||
this.sure && this.$refs.table.setCurrentRow();
|
this.sure && this.$refs.table.setCurrentRow();
|
||||||
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
||||||
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
||||||
)
|
);
|
||||||
this.$store.dispatch('training/emitTipFresh');
|
this.$store.dispatch('training/emitTipFresh');
|
||||||
},
|
},
|
||||||
commit(isClose = true) {
|
commit(isClose = true) {
|
||||||
if (this.currentSelect &&
|
if (this.currentSelect &&
|
||||||
this.currentSelect.code == this.initSelect.code) {
|
this.currentSelect.code == this.initSelect.code) {
|
||||||
const cacheMap = this.getCacheMap();
|
const cacheMap = this.getCacheMap();
|
||||||
const isOK = this.command&&(!this.sure || this.sure&&cacheMap[this.currentSelect.code])
|
const isOK = this.command && (!this.sure || this.sure && cacheMap[this.currentSelect.code]);
|
||||||
const operate = {
|
const operate = {
|
||||||
cmdType: this.sure && isOK ? this.cmdType : null,
|
cmdType: this.sure && isOK ? this.cmdType : null,
|
||||||
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
||||||
@ -197,7 +197,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.$root.$emit('removeCache', this.cmdType.value, this.currentSelect.code);
|
this.$root.$emit('removeCache', this.cmdType.value, this.currentSelect.code);
|
||||||
}
|
}
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
this.$store.dispatch('map/flushMapRef');
|
this.$store.dispatch('map/flushMapRef');
|
||||||
isClose && this.doClose();
|
isClose && this.doClose();
|
||||||
}
|
}
|
||||||
@ -212,17 +212,17 @@ export default {
|
|||||||
handleChangeLine(val) {
|
handleChangeLine(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
|
||||||
this.changeIgnore = false;
|
this.changeIgnore = false;
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
this.$store.dispatch('trainingNew/next', step).then(({ valid }) => {
|
this.$store.dispatch('trainingNew/next', step).then(({ valid }) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
||||||
@ -239,7 +239,7 @@ export default {
|
|||||||
if (this.sure) {
|
if (this.sure) {
|
||||||
return cache.done == 'two' ? '确认过岔锁闭取消完成' : '等待确认/取消';
|
return cache.done == 'two' ? '确认过岔锁闭取消完成' : '等待确认/取消';
|
||||||
} else {
|
} else {
|
||||||
return cache.done == 'one' ? '已初始化' : ''
|
return cache.done == 'one' ? '已初始化' : '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
@ -251,10 +251,10 @@ export default {
|
|||||||
return '后备';
|
return '后备';
|
||||||
},
|
},
|
||||||
getSectionCanStatus(code) {
|
getSectionCanStatus(code) {
|
||||||
return '否'
|
return '否';
|
||||||
},
|
},
|
||||||
getSectionHasStatus(code) {
|
getSectionHasStatus(code) {
|
||||||
return '否'
|
return '否';
|
||||||
},
|
},
|
||||||
cancel() {
|
cancel() {
|
||||||
const operate = {
|
const operate = {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="5" :offset="1" v-if="sure">
|
<el-col v-if="sure" :span="5" :offset="1">
|
||||||
<fieldset style="position: absolute;top: 40%;">
|
<fieldset style="position: absolute;top: 40%;">
|
||||||
<legend class="card_title">命令</legend>
|
<legend class="card_title">命令</legend>
|
||||||
<el-radio-group v-model="command">
|
<el-radio-group v-model="command">
|
||||||
@ -68,13 +68,13 @@ export default {
|
|||||||
initCacheMap: {
|
initCacheMap: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
initInfo: {
|
initInfo: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateDone: {
|
updateDone: {
|
||||||
@ -106,7 +106,7 @@ export default {
|
|||||||
'sectionList'
|
'sectionList'
|
||||||
]),
|
]),
|
||||||
cmdType() {
|
cmdType() {
|
||||||
return ''
|
return '';
|
||||||
},
|
},
|
||||||
initSelect() {
|
initSelect() {
|
||||||
return this.initInfo.initSelect || {};
|
return this.initInfo.initSelect || {};
|
||||||
@ -118,7 +118,7 @@ export default {
|
|||||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||||
},
|
},
|
||||||
tempList() {
|
tempList() {
|
||||||
return this.sectionList.filter(el => ['01', '04'].includes(el.type) )
|
return this.sectionList.filter(el => ['01', '04'].includes(el.type) );
|
||||||
},
|
},
|
||||||
domIdChoose() {
|
domIdChoose() {
|
||||||
return this.dialogShow ? OperationEvent.Command.common.choose.domId : '';
|
return this.dialogShow ? OperationEvent.Command.common.choose.domId : '';
|
||||||
@ -169,14 +169,14 @@ export default {
|
|||||||
this.sure && this.$refs.table.setCurrentRow();
|
this.sure && this.$refs.table.setCurrentRow();
|
||||||
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
||||||
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
||||||
)
|
);
|
||||||
this.$store.dispatch('training/emitTipFresh');
|
this.$store.dispatch('training/emitTipFresh');
|
||||||
},
|
},
|
||||||
commit(isClose = true) {
|
commit(isClose = true) {
|
||||||
if (this.currentSelect &&
|
if (this.currentSelect &&
|
||||||
this.currentSelect.code == this.initSelect.code) {
|
this.currentSelect.code == this.initSelect.code) {
|
||||||
const cacheMap = this.getCacheMap();
|
const cacheMap = this.getCacheMap();
|
||||||
const isOK = this.command&&(!this.sure || this.sure&&cacheMap[this.currentSelect.code])
|
const isOK = this.command && (!this.sure || this.sure && cacheMap[this.currentSelect.code]);
|
||||||
const operate = {
|
const operate = {
|
||||||
cmdType: this.sure && isOK ? this.cmdType : null,
|
cmdType: this.sure && isOK ? this.cmdType : null,
|
||||||
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
||||||
@ -192,7 +192,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.$root.$emit('removeCache', this.cmdType.value, this.currentSelect.code);
|
this.$root.$emit('removeCache', this.cmdType.value, this.currentSelect.code);
|
||||||
}
|
}
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
this.$store.dispatch('map/flushMapRef');
|
this.$store.dispatch('map/flushMapRef');
|
||||||
isClose && this.doClose();
|
isClose && this.doClose();
|
||||||
}
|
}
|
||||||
@ -207,17 +207,17 @@ export default {
|
|||||||
handleChangeLine(val) {
|
handleChangeLine(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
|
||||||
this.changeIgnore = false;
|
this.changeIgnore = false;
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
this.$store.dispatch('trainingNew/next', step).then(({ valid }) => {
|
this.$store.dispatch('trainingNew/next', step).then(({ valid }) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
this.$store.dispatch('menuOperation/handleBreakFlag', { break: true });
|
||||||
@ -234,7 +234,7 @@ export default {
|
|||||||
if (this.sure) {
|
if (this.sure) {
|
||||||
return cache.done == 'two' ? '确认转换锁闭取消完成' : '等待确认/取消';
|
return cache.done == 'two' ? '确认转换锁闭取消完成' : '等待确认/取消';
|
||||||
} else {
|
} else {
|
||||||
return cache.done == 'one' ? '已初始化' : ''
|
return cache.done == 'one' ? '已初始化' : '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
|
@ -171,7 +171,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: `${val.code}`,
|
// code: `${val.code}`,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code,
|
val: val.code,
|
||||||
param: {
|
param: {
|
||||||
|
@ -278,7 +278,7 @@ export default {
|
|||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -238,7 +238,7 @@ export default {
|
|||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -222,7 +222,7 @@ export default {
|
|||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -227,7 +227,7 @@ export default {
|
|||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<el-table-column v-if="!isCbtc" prop="status" label="后备模式进程" />
|
<el-table-column v-if="!isCbtc" prop="status" label="后备模式进程" />
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="5" :offset="1" v-if="sure">
|
<el-col v-if="sure" :span="5" :offset="1">
|
||||||
<div class="set-status-title">命令</div>
|
<div class="set-status-title">命令</div>
|
||||||
<div class="set-status-box">
|
<div class="set-status-box">
|
||||||
<el-radio v-model="command" :label="true">确认</el-radio>
|
<el-radio v-model="command" :label="true">确认</el-radio>
|
||||||
@ -52,17 +52,20 @@ import CMD from '@/scripts/cmdPlugin/CommandEnum';
|
|||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
NoticeInfo
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
initCacheMap: {
|
initCacheMap: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
initInfo: {
|
initInfo: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {
|
default() {
|
||||||
return {}
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateDone: {
|
updateDone: {
|
||||||
@ -70,9 +73,6 @@ export default {
|
|||||||
default: 0
|
default: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
|
||||||
NoticeInfo
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
title: '',
|
title: '',
|
||||||
@ -102,7 +102,7 @@ export default {
|
|||||||
return this.initInfo.initSelect || {};
|
return this.initInfo.initSelect || {};
|
||||||
},
|
},
|
||||||
isCbtc() {
|
isCbtc() {
|
||||||
return true //this.operate.operation.includes(OperationEvent.Command.mBar.cbtcMode.operation);
|
return true; // this.operate.operation.includes(OperationEvent.Command.mBar.cbtcMode.operation);
|
||||||
},
|
},
|
||||||
cmdType() {
|
cmdType() {
|
||||||
return this.isCbtc ? CMD.Signal.CMD_SIGNAL_OPEN_AUTO_SETTING : CMD.Signal.CMD_SIGNAL_CLOSE_AUTO_SETTING;
|
return this.isCbtc ? CMD.Signal.CMD_SIGNAL_OPEN_AUTO_SETTING : CMD.Signal.CMD_SIGNAL_CLOSE_AUTO_SETTING;
|
||||||
@ -165,17 +165,17 @@ export default {
|
|||||||
this.sure && this.$refs.table.setCurrentRow();
|
this.sure && this.$refs.table.setCurrentRow();
|
||||||
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
this.sure && this.$root.$emit('iniCacheMap', this.cmdType.value,
|
||||||
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
Object.fromEntries(Object.entries(this.getCacheMap()).filter(el => el[1].done == 'done'))
|
||||||
)
|
);
|
||||||
this.$store.dispatch('training/emitTipFresh');
|
this.$store.dispatch('training/emitTipFresh');
|
||||||
},
|
},
|
||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
this.currentSelect = this.$store.getters['map/getDeviceByCode'](val.code);
|
||||||
this.$emit('updateDone')
|
this.$emit('updateDone');
|
||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
@ -194,7 +194,7 @@ export default {
|
|||||||
if (this.currentSelect &&
|
if (this.currentSelect &&
|
||||||
this.currentSelect.code == this.initSelect.code) {
|
this.currentSelect.code == this.initSelect.code) {
|
||||||
const cacheMap = this.getCacheMap();
|
const cacheMap = this.getCacheMap();
|
||||||
const isOK = this.command&&(!this.sure || this.sure&&cacheMap[this.currentSelect.code])
|
const isOK = this.command && (!this.sure || this.sure && cacheMap[this.currentSelect.code]);
|
||||||
const step = {
|
const step = {
|
||||||
cmdType: this.sure && isOK ? this.cmdType : null,
|
cmdType: this.sure && isOK ? this.cmdType : null,
|
||||||
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
operation: isClose ? OperationEvent.Command.common.confirm.operation : OperationEvent.Command.common.apply.operation,
|
||||||
|
@ -122,7 +122,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -176,7 +176,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -193,7 +193,7 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -204,7 +204,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -214,7 +214,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -155,7 +155,7 @@ export default {
|
|||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
if (!val) { return; }
|
if (!val) { return; }
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
@ -240,7 +240,7 @@ export default {
|
|||||||
if (this.changeIgnore) { return; }
|
if (this.changeIgnore) { return; }
|
||||||
|
|
||||||
const step = {
|
const step = {
|
||||||
code: val.code,
|
// code: val.code,
|
||||||
operation: OperationEvent.Command.common.choose.operation,
|
operation: OperationEvent.Command.common.choose.operation,
|
||||||
val: val.code
|
val: val.code
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user