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() { async getDetail() {
try { try {
this.isLoading = true 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', { const result = await getAction('/spectrumAnalysis/viewBGLogViewer', {
dbName, dbName,
sampleId, sampleId,
@ -34,7 +34,16 @@ export default {
detFileName, detFileName,
qcFileName, qcFileName,
}) })
if(typeof result == 'string') {
this.content = result this.content = result
} else {
const { success, result, message } = res
if (success) {
this.content = result
} else {
this.$message.error(message)
}
}
} catch (error) { } catch (error) {
console.error(error) console.error(error)
} finally { } finally {

View File

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