Conformance: processing time, waiting time, cycle time, change radio done.
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user