gamma 模块 Interactive tool 弹窗位置

Calibration 点击Reanalysis之后 返回结果 Result display 没有重新渲染
formFile 点击save to DB Result display 数据丢失
This commit is contained in:
任珮宇 2023-11-09 10:55:08 +08:00
parent b5c51883da
commit a8b4d34536
3 changed files with 19 additions and 11 deletions

View File

@ -183,15 +183,15 @@ export default {
sampleInfo: {
type: Object,
},
// analyseCurrentSpectrum: {
// type: Object,
// },
analyseCurrentSpectrum: {
type: Object,
},
},
data() {
this.SampleType = SampleType
return {
analyseCurrentSpectrum: {},
// analyseCurrentSpectrum: {},
qcFlags: {},
spectraVisible: false,
@ -466,7 +466,8 @@ export default {
postAction('/spectrumAnalysis/analyseCurrentSpectrum', params).then((res) => {
if (res.success) {
// this.isReAnalyed_beta = true
this.analyseCurrentSpectrum = res.result
// this.analyseCurrentSpectrum = res.result
this.$emit('sendXeData', res.result.XeData)
if (res.result.XeData && res.result.XeData.length > 0) {
res.result.XeData.forEach((item) => {
item.conc = parseFloat(item.conc.toPrecision(6))
@ -493,7 +494,8 @@ export default {
}
postAction('/spectrumAnalysis/analyseAllSpectrum', params).then((res) => {
if (res.success) {
this.analyseCurrentSpectrum = res.result
// this.analyseCurrentSpectrum = res.result
this.$emit('sendXeData', res.result.XeData)
res.result.XeData.forEach((item) => {
item.conc = parseFloat(item.conc.toPrecision(6))
item.concErr = parseFloat(item.concErr.toPrecision(6))

View File

@ -1820,7 +1820,12 @@ export default {
width: 100%;
}
}
::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 7px;
}
}
.is-modify,
.is-fitting {
color: #f00;

View File

@ -49,12 +49,13 @@
ref="betaGammaAnalysisRef"
@getFiles="getFiles"
@sendInfo="getStationName"
@sendXeData="getXeData"
@reAnalyCurr="getReAnalyCurr"
@reAnalyAll="getReAnalyAll"
:sampleInfo="sampleInfo"
:sample="sampleData"
:analyseCurrentSpectrum="analyseCurrentSpectrumData"
/>
<!-- :analyseCurrentSpectrum="analyseCurrentSpectrumData" -->
<!-- Beta-Gamma 分析 -->
<div v-else class="empty">Please Select a Sample</div>
<resize-observer @notify="handleResize" />
@ -376,7 +377,7 @@ export default {
betaGammaRlrModalVisible: false, // beta-gamma RLR
statisticsParamerHistoryModalVisible: false, // beta-gamma Statistics Paramer History
bgLogViewerVisible: false, // beta-gamma Log BG log viewer
// analyseCurrentSpectrumData: {},
analyseCurrentSpectrumData: {},
resultDisplayFlag: [],
params_toDB: {
comment: '',
@ -467,7 +468,7 @@ export default {
this.params_toDB.checkDet = val.checkDet
},
getXeData(val) {
// this.$set(this.analyseCurrentSpectrumData, 'XeData', val)
this.$set(this.analyseCurrentSpectrumData, 'XeData', val)
this.resultDisplayFlag = val
},
// formDB sampleData
@ -1304,7 +1305,7 @@ export default {
title: 'BG log viewer',
show: this.isBetaGamma,
handler: () => {
if(this.params_toDB.savedAnalysisResult) {
if (this.params_toDB.savedAnalysisResult) {
this.bgLogViewerVisible = true
}
},