fix: 从服务端加载谱发生错误时,关闭loading;修复reprocessing未成功时也事先清除了series的问题

This commit is contained in:
Xu Zhimeng 2023-10-13 10:33:46 +08:00
parent 758f5a9499
commit b4782e98df

View File

@ -306,9 +306,11 @@ export default {
this.dataProsess(result, 'db') this.dataProsess(result, 'db')
} else { } else {
this.$message.error(message) this.$message.error(message)
this.isLoading = false
} }
} catch (error) { } catch (error) {
console.error(error) console.error(error)
this.isLoading = false
} }
}, },
@ -334,9 +336,11 @@ export default {
this.dataProsess(result, 'file') this.dataProsess(result, 'file')
} else { } else {
this.$message.error(message) this.$message.error(message)
this.isLoading = false
} }
} catch (error) { } catch (error) {
console.error(error) console.error(error)
this.isLoading = false
} }
}, },
@ -1216,11 +1220,10 @@ export default {
try { try {
this.isLoading = true this.isLoading = true
this.handleResetState()
const { inputFileName: fileName } = this.sample const { inputFileName: fileName } = this.sample
const { success, result, message } = await postAction(`/gamma/Reprocessing?fileName=${fileName}`) const { success, result, message } = await postAction(`/gamma/Reprocessing?fileName=${fileName}`)
if (success) { if (success) {
this.handleResetState()
result.DetailedInformation = this.detailedInfomation result.DetailedInformation = this.detailedInfomation
this.dataProsess(result) this.dataProsess(result)
} else { } else {