处理 前端人工交互 beta 分析完成后 save To DB 功能不调用接口的问题
This commit is contained in:
parent
03f85b098c
commit
f2a9cc93ed
|
@ -224,6 +224,7 @@ export default {
|
||||||
statisticModalVisible: false, // Qc Flags 点击后的弹窗
|
statisticModalVisible: false, // Qc Flags 点击后的弹窗
|
||||||
statisticsType: StatisticsType['Collection Time'],
|
statisticsType: StatisticsType['Collection Time'],
|
||||||
currSample: {},
|
currSample: {},
|
||||||
|
copyXeData: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
@ -425,7 +426,13 @@ export default {
|
||||||
this.betaProjectedData = betaProjectedData
|
this.betaProjectedData = betaProjectedData
|
||||||
this.betaEnergyData = betaEnergyData
|
this.betaEnergyData = betaEnergyData
|
||||||
|
|
||||||
this.resultDisplay = this.resultDisplay.length > 0 ? this.resultDisplay : XeData
|
console.log('this.resultDisplaythis.resultDisplay', this.resultDisplay)
|
||||||
|
|
||||||
|
this.resultDisplay = this.copyXeData
|
||||||
|
? this.copyXeData
|
||||||
|
: this.resultDisplay.length > 0
|
||||||
|
? this.resultDisplay
|
||||||
|
: XeData
|
||||||
|
|
||||||
this.$emit('sendInfo', this.resultDisplay, this.spectrumData.stationCode, savedAnalysisResult)
|
this.$emit('sendInfo', this.resultDisplay, this.spectrumData.stationCode, savedAnalysisResult)
|
||||||
|
|
||||||
|
@ -528,6 +535,7 @@ export default {
|
||||||
item.mdc = parseFloat(item.mdc.toPrecision(6))
|
item.mdc = parseFloat(item.mdc.toPrecision(6))
|
||||||
})
|
})
|
||||||
this.$emit('reAnalyCurr', true, res.result.XeData)
|
this.$emit('reAnalyCurr', true, res.result.XeData)
|
||||||
|
this.copyXeData = res.result.XeData
|
||||||
|
|
||||||
this.handleReAnalyse(res.result)
|
this.handleReAnalyse(res.result)
|
||||||
}
|
}
|
||||||
|
|
|
@ -392,7 +392,7 @@ export default {
|
||||||
statisticsParamerHistoryModalVisible: false, // beta-gamma Statistics Paramer History 弹窗
|
statisticsParamerHistoryModalVisible: false, // beta-gamma Statistics Paramer History 弹窗
|
||||||
bgLogViewerVisible: false, // beta-gamma Log 下的BG log viewer 弹窗
|
bgLogViewerVisible: false, // beta-gamma Log 下的BG log viewer 弹窗
|
||||||
analyseCurrentSpectrumData: {},
|
analyseCurrentSpectrumData: {},
|
||||||
resultDisplayFlag: [],
|
resultDisplayFlag: null,
|
||||||
params_toDB: {
|
params_toDB: {
|
||||||
comment: '',
|
comment: '',
|
||||||
savedAnalysisResult: false,
|
savedAnalysisResult: false,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user