fix: 修复Tool of Calibration -> beta中E to C 取值错误问题,及gamma的Strip未清理标题颜色的问题

This commit is contained in:
Xu Zhimeng 2024-01-04 19:40:11 +08:00
parent b003b7fda7
commit 25792a7c06
2 changed files with 4 additions and 2 deletions

View File

@ -136,8 +136,8 @@
<div class="func"> <div class="func">
<span>E to C : </span> <span>E to C : </span>
<span <span
>C = {{ scientificNotationStr2Fixed(newE2C[0]) }} + {{ scientificNotationStr2Fixed(newE2C[0]) }} *E >C = {{ scientificNotationStr2Fixed(newE2C[0]) }} + {{ scientificNotationStr2Fixed(newE2C[1]) }} *E
+ {{ scientificNotationStr2Fixed(newE2C[0]) }} *E <sup>2</sup> + {{ scientificNotationStr2Fixed(newE2C[2]) }} *E <sup>2</sup>
</span> </span>
</div> </div>
</title-over-border> </title-over-border>

View File

@ -1120,6 +1120,7 @@ export default {
submenuClick: ({ child: { key } }) => { submenuClick: ({ child: { key } }) => {
switch (key) { switch (key) {
case 'compareFromFile': case 'compareFromFile':
this.isComparing = false
this.isStriping = false this.isStriping = false
this.$refs.gammaAnalysisRef.showCompareModal(false) this.$refs.gammaAnalysisRef.showCompareModal(false)
break break
@ -1128,6 +1129,7 @@ export default {
break break
case 'stripFromFile': case 'stripFromFile':
this.isComparing = false this.isComparing = false
this.isStriping = false
this.$refs.gammaAnalysisRef.showCompareModal(true) this.$refs.gammaAnalysisRef.showCompareModal(true)
break break
case 'stripFromDB': case 'stripFromDB':