Merge branch 'feature-analysis-RLR-renpy' of http://git.hivekion.com:3000/xiaoguangbin/AnalysisSystemForRadionuclide_vue into master-dev

This commit is contained in:
xiaoguangbin 2023-10-12 15:31:29 +08:00
commit 84441e9c42
7 changed files with 299 additions and 47 deletions

View File

@ -37,7 +37,7 @@ export default {
},
handleOK() {
if (this.allowNaN || this.value) {
this.$emit('change', this.value || 0, this.index, this.prevValue)
this.$emit('change', this.value, this.index, this.prevValue)
this.visible = false
} else {
this.$message.warn('Input value invalid.')

View File

@ -206,6 +206,7 @@ import SampleDataMixin from '@/views/spectrumAnalysis/SampleDataMixin'
import GeneralCommentModal from './components/GeneralCommentModal.vue'
import EditSlopeModal from './components/EditSlopeModal.vue'
import Response from './Response.json'
import { isNullOrUndefined } from '@/utils/util'
//
const initialOption = {
@ -414,7 +415,7 @@ const nuclideIdentifyModal = {
}
//
export const Operators = {
const Operators = {
ADD: 1, //
REMOVE: 2, //
MODIFY: 3, //
@ -693,6 +694,7 @@ export default {
if (!peaksBetweenChannel.length) {
this.$message.warn(`There are 0 peak between channel ${left} and ${right}`)
this.isFitting = false
return
}
@ -1377,9 +1379,9 @@ export default {
xctrlList.forEach((xctrl, index) => {
const yctrl = yctrlList[index]
const yslope = yslopeList[index]
if (yslope != 0) {
plusGraphic.push(this.buildGraphicPlus(xctrl + 2, yctrl + 2 * yslope))
if (!isNullOrUndefined(yslope)) {
plusGraphic.push(this.buildGraphicPlus(xctrl - 2, yctrl - 2 * yslope))
plusGraphic.push(this.buildGraphicPlus(xctrl + 2, yctrl + 2 * yslope))
}
})
this.option.graphic[1].children = plusGraphic
@ -1396,11 +1398,11 @@ export default {
$action: 'replace',
position: [xPix, yPix],
style: {
x: -10,
y: -10,
text: '+',
fill: '#0f0',
font: 'bolder 20px "Microsoft YaHei", sans-serif'
font: 'bolder 20px "Microsoft YaHei", sans-serif',
textAlign: 'center',
textVerticalAlign: 'middle'
},
zlevel: 101
}

View File

@ -43,10 +43,10 @@
<a-input v-model="model.edit_cal_high" disabled></a-input>
</a-form-model-item>
<a-form-model-item>
<a-checkbox v-model="model.checkBox_updateCal" disabled> Update Calibration </a-checkbox>
<a-checkbox v-model="model.checkBox_updateCal"> Update Calibration </a-checkbox>
</a-form-model-item>
<a-form-model-item>
<a-checkbox v-model="model.checkBox_keepPeak" disabled> Keep Calibration Peak Search Peaks </a-checkbox>
<a-checkbox v-model="model.checkBox_keepPeak"> Keep Calibration Peak Search Peaks </a-checkbox>
</a-form-model-item>
</a-form-model>
</title-over-border>
@ -175,6 +175,8 @@ export default {
edit_riskLevelK,
dateTime_Act,
dateTime_Conc,
checkBox_updateCal,
checkBox_keepPeak,
} = this.model
const param = {
@ -192,11 +194,14 @@ export default {
riskLevelK: edit_riskLevelK,
refTime_act: dateTime_Act,
refTime_conc: dateTime_Conc,
updateCalibration: checkBox_updateCal,
keepCalPeakSearchPeaks: checkBox_keepPeak,
}
const { success, message } = await postAction('/gamma/configureSave', param)
if (success) {
this.$message.success('Save Success')
this.$emit('senInfo', checkBox_updateCal ? '1' : '0')
} else {
this.$message.error(message)
}

View File

@ -319,6 +319,9 @@ export default {
canUseFilePicker,
}
},
created() {
this.handleReset()
},
methods: {
// 10*4
getInitialList() {
@ -386,6 +389,7 @@ export default {
if (!isFileInDirectory) {
this.$message.warn('File and Directory Not in Same')
this.directoryHanlder = undefined
this.useFilePicker(column, record, rowIndex)
return
}
@ -679,10 +683,6 @@ export default {
handleCancel() {
this.visible = false
},
beforeModalOpen() {
this.handleReset()
},
},
}
</script>

View File

@ -1,52 +1,52 @@
<template>
<custom-modal v-model="visible" :width="400" title="Processing Monitor" :footer="null">
<div class="processing">
<div>
<div v-if="calibrationUpdatesFlag" style="margin-bottom: 20px">
<!-- 标题 -->
<div class="processing-title">Calibration Updates</div>
<!-- 列表 -->
<div class="processing-list">
<div class="processing-list-item">
<status :status="0" />
<status :status="status_ener1" />
<div class="description">Energy - Mariscotti Centroids</div>
</div>
<div class="processing-list-item">
<status :status="0" />
<status :status="status_reso" />
<div class="description">Resolution</div>
</div>
<div class="processing-list-item">
<status :status="0" />
<status :status="status_ener2" />
<div class="description">Energy - Fitted Centroids</div>
</div>
</div>
</div>
<div style="margin-top: 20px;">
<div>
<!-- 标题 -->
<div class="processing-title">Spectrum Analysis</div>
<!-- 列表 -->
<div class="processing-list">
<div class="processing-list-item">
<status :status="0" />
<status :status="status_peak" />
<div class="description">Peak Search</div>
</div>
<div class="processing-list-item">
<status :status="0" />
<status :status="status_base" />
<div class="description">Baseline Fitting</div>
</div>
<div class="processing-list-item">
<status :status="1" />
<status :status="status_net" />
<div class="description">Net Area Fitting</div>
</div>
<div class="processing-list-item">
<status :status="2" />
<status :status="status_nucl" />
<div class="description">Nuclide Identification</div>
</div>
<div class="processing-list-item">
<status :status="2" />
<status :status="status_acti" />
<div class="description">Activity and MDA</div>
</div>
<div class="processing-list-item">
<status :status="2" />
<status :status="status_qc" />
<div class="description">QC Test</div>
</div>
</div>
@ -59,12 +59,24 @@
import Status from './components/status.vue'
export default {
components: {
Status
Status,
},
props: {
value: {
type: Boolean
}
type: Boolean,
},
bAnalyed: {
type: Boolean,
},
checkBoxFlag: {
type: Boolean,
},
newCheckBoxFlag: {
type: String,
},
currStep: {
type: String,
},
},
computed: {
visible: {
@ -73,9 +85,125 @@ export default {
},
set(val) {
this.$emit('input', val)
}
},
},
},
watch: {
newCheckBoxFlag: {
handler(val) {
console.log('flag', val)
if (val === '0') {
this.calibrationUpdatesFlag = false
this.status_peak = 1
this.status_base = 2
this.status_net = 2
this.status_nucl = 2
this.status_acti = 2
this.status_qc = 2
} else if (val === '1') {
this.calibrationUpdatesFlag = true
this.status_ener1 = 1
this.status_reso = 1
this.status_ener2 = 1
this.status_peak = 2
this.status_base = 2
this.status_net = 2
this.status_nucl = 2
this.status_acti = 2
this.status_qc = 2
} else {
this.calibrationUpdatesFlag = this.checkBoxFlag
this.status_peak = this.checkBoxFlag ? 2 : 1
this.status_ener1 = 1
this.status_reso = 1
this.status_ener2 = 1
this.status_base = 2
this.status_net = 2
this.status_nucl = 2
this.status_acti = 2
this.status_qc = 2
}
},
immediate: true,
},
currStep: {
handler(val) {
if (val === '0' && this.calibrationUpdatesFlag) {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 1
} else if (val === '1') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 1
} else if (val === '2') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 0
this.status_net = 1
} else if (val === '3') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 0
this.status_net = 0
this.status_nucl = 1
} else if (val === '4') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 0
this.status_net = 0
this.status_nucl = 0
this.status_acti = 1
} else if (val === '5') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 0
this.status_net = 0
this.status_nucl = 0
this.status_acti = 0
this.status_qc = 1
} else if (val === '6') {
this.status_ener1 = 0
this.status_reso = 0
this.status_ener2 = 0
this.status_peak = 0
this.status_base = 0
this.status_net = 0
this.status_nucl = 0
this.status_acti = 0
this.status_qc = 0
setTimeout(() => {
this.$emit('closeModal')
}, 500)
}
},
},
},
data() {
return {
calibrationUpdatesFlag: true,
status_ener1: 1,
status_reso: 1,
status_ener2: 1,
status_peak: 2,
status_base: 2,
status_net: 2,
status_nucl: 2,
status_acti: 2,
status_qc: 2,
}
}
},
}
</script>

View File

@ -91,7 +91,15 @@
<compare-file-list-modal v-model="compareFileListModalVisible" @compareWithFile="handleCompareWithFile" />
<!-- ReProcessing 弹窗开始 -->
<re-processing-modal v-model="reprocessingModalVisible" />
<re-processing-modal
v-if="abc"
v-model="reprocessingModalVisible"
:bAnalyed="bAnalyed"
:currStep="currStep"
:checkBoxFlag="checkBox_updateCal"
:newCheckBoxFlag="newCheckBox_updateCal"
@closeModal="haCndleCloseModal"
/>
<!-- ReProcessing 弹窗结束 -->
</div>
</template>
@ -121,11 +129,18 @@ import ReProcessingModal from './components/Modals/ReProcessingModal/index.vue'
import { GammaOptions, graphAssistance } from './settings'
import store from '@/store/'
import Vue from 'vue'
import { ACCESS_TOKEN } from '@/store/mutation-types'
export default {
props: {
sample: {
type: Object,
},
updateFlag: {
type: String,
},
},
components: {
CustomChart,
@ -141,6 +156,7 @@ export default {
},
data() {
return {
abc: false,
isLoading: false,
isLoadingNuclide: false,
option: cloneDeep(GammaOptions.option),
@ -191,10 +207,16 @@ export default {
compareFileListModalVisible: false, // Compare
reprocessingModalVisible: false, //
isProcessing: false, //
websock: null,
lockReconnect: false,
bAnalyed: false, //
checkBox_updateCal: false, //update
newCheckBox_updateCal: false, //update
currStep: '',
}
},
created() {
this.option.title.text = '{a|Channel:0} {a|Energy:0} {a|Counts:0} {a|Detectability:0}'
this.setChartBottomTitle(0, 0, 0)
this.option.tooltip.formatter = this.tooltipFormatter
this.$bus.$on('colorChange', this.handleColorChange)
@ -210,8 +232,55 @@ export default {
},
mounted() {
this.option.brush = { toolbox: [] }
this.initWebSocket()
},
methods: {
initWebSocket: function () {
console.log('qweqwerq')
// WebSocketwshttpwsshttps
var userId = store.getters.userInfo.id
var url =
window._CONFIG['domianURL'].replace('https://', 'wss://').replace('http://', 'ws://') + '/websocket/' + userId
//console.log(url);
//update-begin-author:taoyan date:2022-4-22 for: v2.4.6 websocket #3278
let token = Vue.ls.get(ACCESS_TOKEN)
this.websock = new WebSocket(url, [token])
//update-end-author:taoyan date:2022-4-22 for: v2.4.6 websocket #3278
this.websock.onopen = this.websocketOnopen
this.websock.onerror = this.websocketOnerror
this.websock.onmessage = this.websocketOnmessage
this.websock.onclose = this.websocketOnclose
},
websocketOnopen: function () {
// console.log('WebSocket1231')
//
//this.heartCheck.reset().start();
},
websocketOnerror: function (e) {
this.reconnect()
},
websocketOnmessage: function (e) {
// console.log('-----1231-------', e.data)
var data = eval('(' + e.data + ')') //
// console.log(data)
if (data.cmd === 'analysis-process') {
this.currStep = data.msgTxt
}
},
websocketOnclose: function (e) {
this.reconnect()
},
reconnect() {
var that = this
if (that.lockReconnect) return
that.lockReconnect = true
//
setTimeout(function () {
console.info('尝试重连...')
that.initWebSocket()
that.lockReconnect = false
}, 20000)
},
//
async getSampleDetail() {
const { dbName, sampleId } = this.sample
@ -234,7 +303,7 @@ export default {
)
console.log('%c [ result ]-243', 'font-size:13px; background:pink; color:#bf2c9f;', result)
if (success) {
this.dataProsess(result)
this.dataProsess(result, 'db')
} else {
this.$message.error(message)
}
@ -262,7 +331,7 @@ export default {
)
console.log('%c [ result ]-243', 'font-size:13px; background:pink; color:#bf2c9f;', result)
if (success) {
this.dataProsess(result)
this.dataProsess(result, 'file')
} else {
this.$message.error(message)
}
@ -284,7 +353,7 @@ export default {
return cancelToken
},
dataProsess(result) {
dataProsess(result, flag) {
this.isLoading = false
const {
@ -304,7 +373,12 @@ export default {
shapeChannelData,
shapeEnergyData,
} = result
if (flag && (flag == 'dab' || flag == 'file')) {
this.bAnalyed = result.bAnalyed
this.checkBox_updateCal = result.checkBox_updateCal
this.newCheckBox_updateCal = '2'
console.log(this.checkBox_updateCal)
}
this.detailedInfomation = DetailedInformation
this.qcFlags = QCFlag
@ -458,7 +532,7 @@ export default {
}
return `<div class="channel">Channel: ${channel}</div>
<div class="energy">Energy: ${energy}</div>`
<div class="energy">${energy ? `Energy: ${energy}` : ''}</div>`
},
// Graph Assistance
@ -643,19 +717,37 @@ export default {
const spectrumLineSeries = findSeriesByName(this.option.series, 'Spectrum')
spectrumLineSeries.markLine.data[0].xAxis = xAxis
const channel = this.isEnergy() ? this.getChannelByEnergy(xAxis) : parseInt(xAxis.toFixed())
const energy = this.isEnergy()
? xAxis.toFixed(2)
: this.energyData.all.pointlist && this.energyData.all.pointlist[channel - 1].x.toFixed(2)
const counts = this.isEnergy()
? this.energyData.all.pointlist[channel - 1]
: this.channelData.all.pointlist[channel - 1]
this.option.title.text = `{a|Channel:${channel}} {a|Energy:${energy}} {a|Counts:${counts.y}} {a|Detectability:0}`
const { channel, energy, counts } = this.getEnergyAndCountsByXAxis(xAxis)
this.setChartBottomTitle(channel, energy, counts)
this.getSelPosNuclide(channel)
}
},
//
setChartBottomTitle(channel, energy, counts) {
this.option.title.text = `{a|Channel:${channel}} {a|Energy:${energy}} {a|Counts:${counts}} {a|Detectability:0}`
},
// xAixschannelenergycounts
getEnergyAndCountsByXAxis(xAxis) {
let channel, energy, counts
if (this.isEnergy()) {
channel = this.getChannelByEnergy(xAxis)
energy = xAxis.toFixed(2)
counts = this.energyData.all.pointlist[channel - 1]
} else {
channel = parseInt(xAxis.toFixed())
energy = this.energyData.all.pointlist && this.energyData.all.pointlist[channel - 1].x.toFixed(2)
counts = this.channelData.all.pointlist[channel - 1]
}
return {
channel,
energy,
counts: counts.y,
}
},
//
handleChartDblClick() {
this.handleResetChart()
@ -789,6 +881,8 @@ export default {
if (find) {
this.getSelPosNuclide(find)
const { channel, energy, counts } = this.getEnergyAndCountsByXAxis(find)
this.setChartBottomTitle(channel, energy, counts)
}
},
@ -1107,6 +1201,8 @@ export default {
//
async reProcessing() {
this.abc = true
this.reprocessingModalVisible = true
if (this.isProcessing) {
return
}
@ -1135,8 +1231,13 @@ export default {
}
} catch (error) {
console.error(error)
} finally {
this.isLoading = false
}
// this.reprocessingModalVisible = true
},
haCndleCloseModal() {
this.reprocessingModalVisible = false
this.abc = false
},
/**
@ -1352,6 +1453,13 @@ export default {
},
immediate: true,
},
updateFlag: {
handler(val) {
console.log('dfad', val)
this.newCheckBox_updateCal = val
},
immediate: true,
},
},
}
</script>

View File

@ -30,7 +30,7 @@
<!-- 频谱分析部分 -->
<div class="spectrum-analysis-main">
<!-- Gamma 分析 -->
<gamma-analysis v-if="isGamma" ref="gammaAnalysisRef" :sample="sampleData" />
<gamma-analysis v-if="isGamma" ref="gammaAnalysisRef" :sample="sampleData" :updateFlag="updateFlag" />
<!-- Gamma 分析 -->
<!-- Beta-Gamma 分析 -->
@ -78,7 +78,11 @@
<!-- Save Setting 弹窗结束 -->
<!-- 分析-设置弹窗开始 -->
<analyze-setting-modal v-model="analyzeConfigureModalVisible" :sampleId="sampleData.sampleId" />
<analyze-setting-modal
v-model="analyzeConfigureModalVisible"
:sampleId="sampleData.sampleId"
@senInfo="getUpdateFlag"
/>
<!-- 分析-设置弹窗结束 -->
<!-- 分析工具弹窗开始 -->
@ -374,6 +378,7 @@ export default {
xe133mFlag: null,
xe135Flag: null,
},
updateFlag: '2',
}
},
created() {
@ -391,6 +396,10 @@ export default {
},
methods: {
getUpdateFlag(val) {
console.log('qerq', val)
this.updateFlag = val
},
getcommentsInfo(val) {
this.params_toDB.comment = val.spectrumAnalysisCommentInfo
},