2023-07-06 14:05:43 +08:00
|
|
|
<template>
|
|
|
|
<custom-modal v-model="visible" :width="1200" title="Load From Database" class="load-from-db-modal">
|
|
|
|
<search-form :items="formItems" v-model="queryParam" @search="searchQuery"> </search-form>
|
|
|
|
<custom-table
|
|
|
|
size="middle"
|
|
|
|
rowKey="sampleId"
|
|
|
|
:columns="columns"
|
|
|
|
:list="dataSource"
|
|
|
|
:pagination="ipagination"
|
|
|
|
:loading="loading"
|
|
|
|
@change="handleTableChange"
|
|
|
|
:selectedRowKeys.sync="selectedRowKeys"
|
|
|
|
:multiple="true"
|
|
|
|
>
|
|
|
|
</custom-table>
|
|
|
|
<!-- 底部操作栏 -->
|
|
|
|
<template slot="custom-footer">
|
|
|
|
<a-button type="primary" :loading="isLoadingSample" @click="handleLoad">Load</a-button>
|
|
|
|
</template>
|
|
|
|
</custom-modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
|
import { getAction } from '../../../../api/manage'
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'SampleID',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'sampleId'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Station',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'stationName'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Detector',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'detectorsName'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Sample',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'sampleType'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'DataType',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'dataType'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Qualifier',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'spectralQualifie'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Col.Stop',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'collectStop'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Acq.Start',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'acquisitionStart'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Acq.real',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'acquisitionRealSec'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Acq.live',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'acquisitionLiveSec'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Status',
|
|
|
|
align: 'left',
|
|
|
|
dataIndex: 'status'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: Boolean
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mixins: [JeecgListMixin],
|
|
|
|
data() {
|
|
|
|
this.columns = columns
|
2023-07-06 19:41:06 +08:00
|
|
|
this.disableMixinCreated = true
|
2023-07-06 14:05:43 +08:00
|
|
|
return {
|
|
|
|
selectedRowKeys: [],
|
|
|
|
stationList: [],
|
|
|
|
detectorList: [],
|
|
|
|
url: {
|
2023-07-06 19:41:06 +08:00
|
|
|
list: '/spectrumAnalysis/getDBSpectrumList'
|
2023-07-06 14:05:43 +08:00
|
|
|
},
|
|
|
|
isLoadingSample: false // 正在加载样例
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
loadData(arg) {
|
2023-07-06 19:41:06 +08:00
|
|
|
const params = this.getQueryParams() //查询条件
|
|
|
|
if (!params.menuTypes || !params.menuTypes.length) {
|
|
|
|
this.$message.warn('Please Select MenuTypes First')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
params.menuTypes = params.menuTypes.join(',')
|
|
|
|
|
2023-07-06 14:05:43 +08:00
|
|
|
//加载数据 若传入参数1则加载第一页的内容
|
|
|
|
if (arg === 1) {
|
|
|
|
this.ipagination.current = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params.checkboxGroup) {
|
|
|
|
params.checkboxGroup.forEach(item => {
|
|
|
|
params[item] = true
|
|
|
|
})
|
|
|
|
delete params.checkboxGroup
|
|
|
|
}
|
|
|
|
|
2023-07-06 19:41:06 +08:00
|
|
|
this.onClearSelected()
|
|
|
|
|
2023-07-06 14:05:43 +08:00
|
|
|
this.loading = true
|
|
|
|
getAction(this.url.list, params)
|
|
|
|
.then(res => {
|
|
|
|
if (res.success) {
|
|
|
|
this.dataSource = res.result.records || res.result
|
|
|
|
if (res.result.total) {
|
|
|
|
this.ipagination.total = res.result.total
|
|
|
|
} else {
|
|
|
|
this.ipagination.total = 0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.$message.warning(res.message)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
this.loading = false
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 加载
|
|
|
|
*/
|
|
|
|
async handleLoad() {
|
|
|
|
if (!this.selectedRowKeys.length) {
|
|
|
|
this.$message.warn('Please Select Databases To Load')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.isLoadingSample = true
|
|
|
|
const res = await ''
|
|
|
|
console.log('%c [ res ]-156', 'font-size:13px; background:pink; color:#bf2c9f;', res)
|
|
|
|
this.isLoadingSample = false
|
|
|
|
this.visible = false
|
|
|
|
},
|
|
|
|
|
2023-07-06 19:41:06 +08:00
|
|
|
async getStationAndDetectorList() {
|
|
|
|
const params = this.getQueryParams() //查询条件
|
|
|
|
if (!params.menuTypes || !params.menuTypes.length) {
|
|
|
|
return
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
2023-07-06 19:41:06 +08:00
|
|
|
params.menuTypes = params.menuTypes.join(',')
|
2023-07-06 14:05:43 +08:00
|
|
|
|
|
|
|
try {
|
2023-07-06 19:41:06 +08:00
|
|
|
const { success, result, message } = await getAction('/spectrumAnalysis/getDBSearchList', {
|
|
|
|
menuTypes: []
|
2023-07-06 14:05:43 +08:00
|
|
|
})
|
|
|
|
if (success) {
|
2023-07-06 19:41:06 +08:00
|
|
|
this.stationList = result.records.map(record => ({ label: record.stationCode, value: record.stationId }))
|
2023-07-06 14:05:43 +08:00
|
|
|
} else {
|
|
|
|
this.$message.error(message)
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
filterOption(input, option) {
|
|
|
|
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
visible: {
|
|
|
|
get() {
|
|
|
|
return this.value
|
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
this.$emit('input', val)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
formItems() {
|
|
|
|
return [
|
|
|
|
{
|
2023-07-06 19:41:06 +08:00
|
|
|
label: 'MenuType',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'menuTypes',
|
2023-07-06 14:05:43 +08:00
|
|
|
props: {
|
2023-07-06 19:41:06 +08:00
|
|
|
mode: 'multiple',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'Gamma',
|
|
|
|
value: 'G'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Beta',
|
|
|
|
value: 'B'
|
|
|
|
}
|
|
|
|
]
|
2023-07-06 14:05:43 +08:00
|
|
|
},
|
|
|
|
style: {
|
2023-07-06 19:41:06 +08:00
|
|
|
width: '16.6%'
|
|
|
|
},
|
|
|
|
on: {
|
|
|
|
change: () => {
|
|
|
|
this.getStationAndDetectorList()
|
|
|
|
}
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Station',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'stationId',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'ALL',
|
|
|
|
value: ''
|
|
|
|
},
|
|
|
|
...this.stationList
|
|
|
|
],
|
|
|
|
showSearch: true,
|
|
|
|
filterOption: this.filterOption,
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
2023-07-06 19:41:06 +08:00
|
|
|
width: '16.6%'
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Detector',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'detectorId',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'ALL',
|
|
|
|
value: ''
|
|
|
|
},
|
|
|
|
...this.detectorList
|
|
|
|
],
|
|
|
|
showSearch: true,
|
|
|
|
filterOption: this.filterOption,
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
2023-07-06 19:41:06 +08:00
|
|
|
width: '16.6%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Sample',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'sample',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'P',
|
|
|
|
value: 'P'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'B',
|
|
|
|
value: 'B'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'G',
|
|
|
|
value: 'G'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
width: '16.6%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'DataType',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'dataType',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'S',
|
|
|
|
value: 'S'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'G',
|
|
|
|
value: 'G'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'D',
|
|
|
|
value: 'D'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Q',
|
|
|
|
value: 'Q'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'B',
|
|
|
|
value: 'B'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'C',
|
|
|
|
value: 'C'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
width: '16.6%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Qualifier',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'dataType',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
label: 'FULL',
|
|
|
|
value: 'FULL'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'PREL',
|
|
|
|
value: 'PREL'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
width: '16.6%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'SampleID',
|
|
|
|
type: 'a-input',
|
|
|
|
name: 'sampleId',
|
|
|
|
props: {
|
|
|
|
allowClear: true
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
width: '20%'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '',
|
|
|
|
type: 'a-checkbox-group',
|
|
|
|
name: 'checkboxGroup',
|
|
|
|
props: {
|
|
|
|
options: [
|
|
|
|
{ label: 'All User', value: 'allUser' },
|
|
|
|
{ label: 'Collect Stop', value: 'collectStop' },
|
|
|
|
{ label: 'Acq.Start', value: 'acqDotStart' }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
width: '315px'
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'From',
|
|
|
|
type: 'custom-date-picker',
|
2023-07-06 19:41:06 +08:00
|
|
|
name: 'startDate',
|
2023-07-06 14:05:43 +08:00
|
|
|
props: {
|
|
|
|
showTime: { format: 'HH:mm' },
|
|
|
|
format: 'YYYY-MM-DD HH:mm',
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
style: {
|
|
|
|
minWidth: 'auto'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
style: {
|
2023-07-06 19:41:06 +08:00
|
|
|
width: '20%'
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'To',
|
|
|
|
type: 'custom-date-picker',
|
2023-07-06 19:41:06 +08:00
|
|
|
name: 'endDate',
|
2023-07-06 14:05:43 +08:00
|
|
|
props: {
|
|
|
|
showTime: { format: 'HH:mm' },
|
|
|
|
format: 'YYYY-MM-DD HH:mm',
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
|
|
style: {
|
|
|
|
minWidth: 'auto'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
paddingRight: 0,
|
2023-07-06 19:41:06 +08:00
|
|
|
marginRight: '16px',
|
|
|
|
width: '20%'
|
2023-07-06 14:05:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
.load-from-db-modal {
|
|
|
|
}
|
|
|
|
</style>
|