AnalysisSystemForRadionucli.../src/views/spectrumAnalysis/components/PeakInfomation.vue

168 lines
3.5 KiB
Vue
Raw Normal View History

<template>
<custom-modal v-model="visible" title="Peak Infomation" :width="1231" :footer="null" class="peak-infomation">
<a-spin :spinning="isLoading">
<div v-if="compareVisible" class="comparison-list">
<div class="comparison-list-item">
<div class="comparison-list-item-title">ARMD</div>
<custom-table :list="list" :scroll="{ y: 230 }" :columns="columns"></custom-table>
</div>
<div class="comparison-list-item">
<div class="comparison-list-item-title">IDC</div>
<custom-table :list="compareList" :scroll="{ y: 230 }" :columns="columns"></custom-table>
</div>
</div>
<custom-table v-else :columns="columns" :list="list" :scroll="{ y: 460 }" :canSelect="false"></custom-table>
</a-spin>
<!-- 底部按钮 -->
<div class="peak-infomation-footer">
<a-space :size="20">
<a-button :type="compareVisible ? 'grey' : 'primary'" @click="handleComparision">
<img src="@/assets/images/spectrum/comparation.png" />
{{ compareVisible ? 'Cancel comparison' : 'Comparison' }}
</a-button>
<a-button type="primary" @click="handleExportToExcel">
<img src="@/assets/images/spectrum/download.png" />
Export to Excel
</a-button>
</a-space>
</div>
</custom-modal>
</template>
<script>
import ModalMixin from '@/mixins/ModalMixin'
import { getAction } from '@/api/manage'
const columns = [
{
title: 'Index',
dataIndex: 'index',
align: 'center',
customRender: (_, __, index) => {
return index + 1
}
},
{
title: 'Energy(keV)',
dataIndex: 'energy'
},
{
title: 'Centroid',
dataIndex: 'centroid'
},
{
title: 'Multiplet',
dataIndex: 'multiplet'
},
{
title: 'Fwhm(keV)',
dataIndex: 'fwhm'
},
{
title: 'NetArea',
dataIndex: 'netArea'
},
{
title: 'AreaErr(%)',
dataIndex: 'areaErr'
},
{
title: 'Significant',
dataIndex: 'significant'
},
{
title: 'Sensitivity',
dataIndex: 'sensitivity'
},
{
title: 'Indentify',
dataIndex: 'indentify'
}
]
export default {
mixins: [ModalMixin],
props: {
sampleId: {
type: Number
}
},
data() {
this.columns = columns
return {
list: [],
compareList: [],
compareVisible: false, // 是否显示比较
isLoading: false
}
},
methods: {
// 切换比较
handleComparision() {
this.compareVisible = !this.compareVisible
},
async getInfo() {
try {
this.isLoading = true
const { success, result, message } = await getAction('/gamma/peakInformation', {
sampleId: this.sampleId
})
if (success) {
this.list = result
} else {
this.$message.error(message)
}
} catch (error) {
console.error(error)
} finally {
this.isLoading = false
}
},
beforeModalOpen() {
this.compareVisible = false
this.getInfo()
},
// 导出到Excel
handleExportToExcel() {}
}
}
</script>
<style lang="less" scoped>
.peak-infomation {
::v-deep {
.ant-modal-body {
padding: 20px 16px 16px;
}
}
&-footer {
margin-top: 10px;
text-align: right;
.ant-btn {
display: flex;
align-items: center;
img {
margin-right: 10px;
}
}
}
}
.comparison-list {
&-item {
&-title {
color: #0cebc9;
}
&:last-child {
margin-top: 12px;
}
}
}
</style>