Conformance: processing time, waiting time, cycle time, change radio done.

This commit is contained in:
chiayin
2023-08-23 16:34:19 +08:00
parent c5de7f17bc
commit ca359436e4

View File

@@ -141,6 +141,31 @@ export default {
} }
}, },
/**
* select Time Reset
*/
selectTimeReset() {
selectCfmPtEteStart = null; // Processing time
selectCfmPtEteEnd = null;
selectCfmPtEteSEStart = null;
selectCfmPtEteSEEnd = null;
selectCfmPtPStart = null;
selectCfmPtPEnd = null;
selectCfmPtPSEStart = null;
selectCfmPtPSEEnd = null;
selectCfmWtEteStart = null; // Waiting time
selectCfmWtEteEnd = null;
selectCfmWtEteSEStart = null;
selectCfmWtEteSEEnd = null;
selectCfmWtPStart = null;
selectCfmWtPEnd = null;
selectCfmWtPSEStart = null;
selectCfmWtPSEEnd = null;
selectCfmCtEteStart = null; // Cycle time
selectCfmCtEteEnd = null;
selectCfmCtEteSEStart = null;
selectCfmCtEteSEEnd = null;
},
/** /**
* @param {boolean} massage true | false 清空選單選項, 選擇的結果 * @param {boolean} massage true | false 清空選單選項, 選擇的結果
*/ */
@@ -394,6 +419,21 @@ export default {
this.listSeq = []; this.listSeq = [];
}; };
}); });
this.$emitter.on('isRadioProcessScopeChange', (data) => {
if(data) {
this.selectDurationTime = null;
};
});
this.$emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) {
this.selectDurationTime = null;
};
});
this.$emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) {
this.selectDurationTime = null;
};
});
}, },
} }
</script> </script>