diff --git a/src/views/spectrumAnalysis/beta-gamma-analysis.vue b/src/views/spectrumAnalysis/beta-gamma-analysis.vue
index 44492de..12c1881 100644
--- a/src/views/spectrumAnalysis/beta-gamma-analysis.vue
+++ b/src/views/spectrumAnalysis/beta-gamma-analysis.vue
@@ -7,17 +7,17 @@
Detailed-Information
-
- QC Flags
-
-
+
+ QC Flags
+
+
@@ -228,14 +228,24 @@ export default {
statisticsType: StatisticsType['Collection Time'],
currSample: {},
copyXeData: null,
+ qcFlagsVisible: false,
}
},
created() {
this.$bus.$on('ReAnalyses', this.handleReAnalyse)
},
+ mounted() {
+ this.qcFlagsTimer = setTimeout(() => {
+ this.qcFlagsVisible = true
+ }, 100)
+ },
destroyed() {
this.cancelLastRequest()
this.$bus.$off('ReAnalyses', this.handleReAnalyse)
+
+ if (this.qcFlagsTimer) {
+ clearTimeout(this.qcFlagsTimer)
+ }
},
methods: {
// 重新绘制矩形框
@@ -441,7 +451,7 @@ export default {
: this.resultDisplay.length > 0
? this.resultDisplay
: XeData
-
+
this.sortResultDisplay()
this.$emit('sendInfo', this.resultDisplay, this.spectrumData.stationCode, savedAnalysisResult)
@@ -702,6 +712,31 @@ export default {
}
}
+ // 二级操作栏开始
+ .spectrum-analysis-sub-operators {
+ flex-shrink: 0;
+ margin-bottom: 19px;
+ display: flex;
+ gap: 11px;
+ flex-wrap: nowrap;
+ overflow: auto;
+ height: 46px;
+ align-items: center;
+
+ .pop-over-with-icon {
+ height: 32px;
+
+ &:nth-child(1) {
+ width: 224px;
+ }
+
+ &:nth-child(3) {
+ width: 125px;
+ }
+ }
+ }
+ // 二级操作栏结束
+
.sample-select {
::v-deep {
.ant-select-selection {
@@ -712,7 +747,7 @@ export default {
}
&-main {
- height: calc(100% - 51px);
+ height: calc(100% - 65px);
display: flex;
gap: 30px;
overflow: auto hidden;
diff --git a/src/views/spectrumAnalysis/components/SubOperators/BetaGammaQcFlags.vue b/src/views/spectrumAnalysis/components/SubOperators/BetaGammaQcFlags.vue
index 99eed46..3a04118 100644
--- a/src/views/spectrumAnalysis/components/SubOperators/BetaGammaQcFlags.vue
+++ b/src/views/spectrumAnalysis/components/SubOperators/BetaGammaQcFlags.vue
@@ -57,20 +57,23 @@ export default {