fix: 修复barChart在操作后未回传值的问题
This commit is contained in:
parent
fa9b9c7398
commit
b81d5a9797
|
@ -799,6 +799,7 @@ export default {
|
||||||
shapeChannelData,
|
shapeChannelData,
|
||||||
shapeEnergyData,
|
shapeEnergyData,
|
||||||
peak: table,
|
peak: table,
|
||||||
|
barChart: this.barChart
|
||||||
})
|
})
|
||||||
|
|
||||||
this.channelPeakChart = channelPeakChart
|
this.channelPeakChart = channelPeakChart
|
||||||
|
@ -888,6 +889,7 @@ export default {
|
||||||
shapeChannelData,
|
shapeChannelData,
|
||||||
shapeEnergyData,
|
shapeEnergyData,
|
||||||
peak: table,
|
peak: table,
|
||||||
|
barChart: this.barChart,
|
||||||
})
|
})
|
||||||
|
|
||||||
this.channelPeakChart = channelPeakChart
|
this.channelPeakChart = channelPeakChart
|
||||||
|
|
|
@ -1368,9 +1368,13 @@ export default {
|
||||||
|
|
||||||
// 从分析工具刷新部分数据
|
// 从分析工具刷新部分数据
|
||||||
handleRefresh(data) {
|
handleRefresh(data) {
|
||||||
data.DetailedInformation = this.detailedInfomation
|
Object.assign(data, {
|
||||||
data.QCFlag = this.qcFlags
|
DetailedInformation: this.detailedInfomation,
|
||||||
data.BaseCtrls = this.baseCtrls
|
QCFlag: this.qcFlags,
|
||||||
|
BaseCtrls: this.baseCtrls,
|
||||||
|
bAnalyed: this.bAnalyed
|
||||||
|
})
|
||||||
|
|
||||||
this.clearCompareLine()
|
this.clearCompareLine()
|
||||||
this.redrawPeakLine()
|
this.redrawPeakLine()
|
||||||
this.dataProcess(data)
|
this.dataProcess(data)
|
||||||
|
@ -1378,7 +1382,7 @@ export default {
|
||||||
|
|
||||||
// 分析工具Accept时刷新部分数据
|
// 分析工具Accept时刷新部分数据
|
||||||
handleAccept(data) {
|
handleAccept(data) {
|
||||||
const { allData, peakSet, shadowChannelChart, shadowEnergyChart, shapeChannelData, shapeEnergyData } = data
|
const { allData, peakSet, shadowChannelChart, shadowEnergyChart, shapeChannelData, shapeEnergyData, barChart } = data
|
||||||
|
|
||||||
const result = {
|
const result = {
|
||||||
DetailedInformation: this.detailedInfomation,
|
DetailedInformation: this.detailedInfomation,
|
||||||
|
@ -1386,11 +1390,12 @@ export default {
|
||||||
allData,
|
allData,
|
||||||
shadowChannelChart,
|
shadowChannelChart,
|
||||||
shadowEnergyChart,
|
shadowEnergyChart,
|
||||||
|
|
||||||
shapeChannelData,
|
shapeChannelData,
|
||||||
shapeEnergyData,
|
shapeEnergyData,
|
||||||
peak: peakSet,
|
peak: peakSet,
|
||||||
BaseCtrls: this.baseCtrls,
|
BaseCtrls: this.baseCtrls,
|
||||||
|
bAnalyed: this.bAnalyed,
|
||||||
|
barChart
|
||||||
}
|
}
|
||||||
this.clearCompareLine()
|
this.clearCompareLine()
|
||||||
this.redrawPeakLine()
|
this.redrawPeakLine()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user