feat: 增加beta下右下角的放大镜功能,修改左侧图表上层叠方框的颜色

This commit is contained in:
Xu Zhimeng 2023-11-06 17:53:21 +08:00
parent f072b2d40b
commit 1777d174e2
3 changed files with 61 additions and 8 deletions

View File

@ -102,7 +102,7 @@
<div class="result-display"> <div class="result-display">
<beta-gamma-chart-container> <beta-gamma-chart-container>
<template slot="title"> Result display </template> <template slot="title"> Result display </template>
<result-display :data="resultDisplay" @sendFlag="handleGetFlag"></result-display> <result-display :data="resultDisplay" @sendFlag="handleGetFlag" @zoom="handleZoom"></result-display>
</beta-gamma-chart-container> </beta-gamma-chart-container>
</div> </div>
<!-- 结果显示结束 --> <!-- 结果显示结束 -->
@ -506,6 +506,53 @@ export default {
} }
}) })
}, },
//
handleZoom(nuclideName) {
let ROI_nums = []
switch (nuclideName) {
case 'Xe131m':
ROI_nums = [5]
break
case 'Xe133m':
ROI_nums = [6]
break
case 'Xe133':
ROI_nums = [3, 4]
break
case 'Xe135':
ROI_nums = [2]
break
}
if (this.boundaryList.length) {
let left = 0,
right = 0,
top = 0,
bottom = 0
for (let i = 0; i < ROI_nums.length; ++i) {
const ROI_line = this.boundaryList[ROI_nums[i]]
left = Math.min(left, ROI_line.minX)
right = Math.max(right, ROI_line.maxX)
top = Math.max(top, ROI_line.maxY)
bottom = Math.min(bottom, ROI_line.minY)
}
const minX = left - 10,
maxX = right + 10,
minY = bottom - 10,
maxY = top + 10
this.$refs.betaGammaChartRef.setRange(minX, maxX, 'x')
this.$refs.betaGammaChartRef.setRange(minY, maxY, 'y')
this.$refs.lineChart1Ref.setRange(minY, maxY)
this.$refs.lineChart2Ref.setRange(minY, maxY)
this.$refs.lineChart3Ref.setRange(minX, maxX)
this.$refs.lineChart4Ref.setRange(minX, maxX)
}
},
}, },
watch: { watch: {
sample: { sample: {
@ -527,6 +574,7 @@ export default {
this.getSampleDetail_file() this.getSampleDetail_file()
} }
} }
this.$refs.betaGammaChartRef.handleUnzoom()
}, },
immediate: true, immediate: true,
deep: true, deep: true,

View File

@ -48,6 +48,7 @@ import ColorPalette from './ColorPalette.vue'
import { getXAxisAndYAxisByPosition, rangeNumber } from '@/utils/chartHelper.js' import { getXAxisAndYAxisByPosition, rangeNumber } from '@/utils/chartHelper.js'
const buttons = ['2D', '3D Surface', '3D Scatter'] const buttons = ['2D', '3D Surface', '3D Scatter']
const rectColorList = ['#99CA53', '#F6A625', '#6D5FD5', '#BF593E', '#1F9DDB']
// 2D // 2D
const twoDOption = { const twoDOption = {
@ -133,7 +134,7 @@ const twoDOption = {
}, },
series: { series: {
type: 'scatterGL', type: 'scatterGL',
symbolSize: 5, symbolSize: 4,
data: [], data: [],
itemStyle: { itemStyle: {
color: '#fff' color: '#fff'
@ -757,8 +758,8 @@ export default {
// 2D // 2D
boundary: { boundary: {
handler(newVal) { handler(newVal) {
newVal.forEach(item => { newVal.forEach((item, index) => {
item.color = this.getRandomColor() item.color = rectColorList[index%5]
}) })
this.boundaryData = newVal this.boundaryData = newVal
this.reDrawRect() this.reDrawRect()

View File

@ -17,8 +17,8 @@
{{ text }} {{ text }}
</div> </div>
</template> </template>
<template slot="operator"> <template slot="operator" slot-scope="text, record">
<div class="search"></div> <div class="search" @click="handleSearch(record.nuclideName)"></div>
</template> </template>
</a-table> </a-table>
<a-table :data-source="source2" rowKey="id" :columns="columns" :pagination="false"> <a-table :data-source="source2" rowKey="id" :columns="columns" :pagination="false">
@ -38,8 +38,8 @@
{{ text }} {{ text }}
</div> </div>
</template> </template>
<template slot="operator"> <template slot="operator" slot-scope="text, record">
<div class="search"></div> <div class="search" @click="handleSearch(record.nuclideName)"></div>
</template> </template>
</a-table> </a-table>
</div> </div>
@ -112,6 +112,10 @@ export default {
handleCheckboxChange(e, obj) { handleCheckboxChange(e, obj) {
this.$emit('sendFlag', e.target.checked, obj) this.$emit('sendFlag', e.target.checked, obj)
}, },
handleSearch(nuclideName) {
this.$emit('zoom', nuclideName)
},
}, },
watch: { watch: {
data: { data: {