Merge branch 'feature-analysis-RLR-renpy' of http://git.hivekion.com:3000/xiaoguangbin/AnalysisSystemForRadionuclide_vue into master-dev

This commit is contained in:
orgin 2023-11-07 17:23:00 +08:00
commit 8f7f5a7ba4
2 changed files with 14 additions and 3 deletions

View File

@ -25,7 +25,7 @@ export default {
async getDetail() {
try {
this.isLoading = true
const { dbName, sampleId, sampleFileName, gasFileName, detFileName, qcFileName } = this.newSampleData
const { dbName, sampleId, inputFileName: sampleFileName, gasFileName, detFileName, qcFileName } = this.newSampleData
const result = await getAction('/spectrumAnalysis/viewBGLogViewer', {
dbName,
sampleId,
@ -34,7 +34,16 @@ export default {
detFileName,
qcFileName,
})
this.content = result
if(typeof result == 'string') {
this.content = result
} else {
const { success, result, message } = res
if (success) {
this.content = result
} else {
this.$message.error(message)
}
}
} catch (error) {
console.error(error)
} finally {

View File

@ -1303,7 +1303,9 @@ export default {
title: 'BG log viewer',
show: this.isBetaGamma,
handler: () => {
this.bgLogViewerVisible = true
if(this.params_toDB.savedAnalysisResult) {
this.bgLogViewerVisible = true
}
},
},
{