renpy
6ba65075be
# Conflicts: # src/views/spectrumAnalysis/components/Modals/ArrRrrModal.vue # src/views/spectrumAnalysis/components/Modals/DataProcessingLogModal.vue # src/views/spectrumAnalysis/components/Modals/NuclideActivityAndMDCModal.vue # src/views/spectrumAnalysis/components/Modals/QcResultsModal.vue # src/views/spectrumAnalysis/components/Modals/RLRModal/index.vue # src/views/spectrumAnalysis/components/Modals/SampleInfomationModal.vue # src/views/spectrumAnalysis/components/PeakInfomation.vue
90 lines
2.5 KiB
Vue
90 lines
2.5 KiB
Vue
<template>
|
|
<custom-modal v-model="visible" :width="1000" title="Data Processing Log">
|
|
<a-spin :spinning="isLoading">
|
|
<pre class="data-processing-log">{{ text }}</pre>
|
|
</a-spin>
|
|
<div slot="custom-footer" style="text-align: center;">
|
|
<a-space :size="20">
|
|
<a-button type="primary" @click="handleOk">Export</a-button>
|
|
<a-button @click="visible = false">Cancel</a-button>
|
|
</a-space>
|
|
</div>
|
|
</custom-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import ModalMixin from '@/mixins/ModalMixin'
|
|
import { getAction } from '@/api/manage'
|
|
import { saveAs } from 'file-saver';
|
|
import SampleDataMixin from '../../SampleDataMixin'
|
|
export default {
|
|
mixins: [ModalMixin, SampleDataMixin],
|
|
data() {
|
|
return {
|
|
text: "",
|
|
isLoading: false,
|
|
fileName: ''
|
|
}
|
|
},
|
|
methods: {
|
|
beforeModalOpen() {
|
|
this.getViewGammaviewerLog();
|
|
},
|
|
getViewGammaviewerLog() {
|
|
this.isLoading = true
|
|
const { sampleId, inputFileName: fileName } = this.sampleData
|
|
let params = {
|
|
sampleId,
|
|
fileName
|
|
}
|
|
getAction("/gamma/viewGammaViewerLog", params).then(res => {
|
|
this.isLoading = false
|
|
if (res.success) {
|
|
this.text = res.result
|
|
} else {
|
|
this.text = ""
|
|
this.$message.warning("This operation fails. Contact your system administrator")
|
|
}
|
|
})
|
|
},
|
|
handleOk() {
|
|
this.fileName=""
|
|
if (this.text) {
|
|
let strData = new Blob([this.text], { type: 'text/plain;charset=utf-8' });
|
|
// saveAs(strData, `GammaViewer Log.txt`)
|
|
let _this = this
|
|
this.$confirm({
|
|
title: 'Please enter file name',
|
|
content: h => <a-input v-model={_this.fileName} />,
|
|
okText: 'Cancle',
|
|
cancelText: 'Save',
|
|
okButtonProps: {style: {backgroundColor: "#b98326", color: "#fff", borderColor: "transparent"}},
|
|
cancelButtonProps: {style: {color: "#fff", backgroundColor: "#31aab0", borderColor: "transparent"}},
|
|
onOk() {
|
|
console.log('Cancel');
|
|
},
|
|
onCancel() {
|
|
if (_this.fileName) {
|
|
_this.visible = false
|
|
saveAs(strData, `${_this.fileName}.txt`)
|
|
}
|
|
},
|
|
});
|
|
} else {
|
|
this.$message.warning("No data can be saved!")
|
|
}
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.data-processing-log {
|
|
height: 450px;
|
|
max-height: 450px;
|
|
padding: 5px;
|
|
overflow: auto;
|
|
background-color: #285367;
|
|
}
|
|
</style>
|