处理弹窗的样式问题
This commit is contained in:
parent
7e637c8c85
commit
8282663e3e
|
@ -10,7 +10,7 @@
|
|||
>
|
||||
<a-tabs :animated="false" v-model="currTab">
|
||||
<a-tab-pane tab="Gamma Detector Calibration" key="gamma">
|
||||
<gamma-detector-calibration @isFitting="getFittingFlag_gamma" :isFirstFitting="gammaEnergyValid"/>
|
||||
<gamma-detector-calibration @isFitting="getFittingFlag_gamma" :isFirstFitting="gammaEnergyValid" />
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="Beta Detector Calibration" key="beta">
|
||||
<beta-detector-calibration @isFitting="getFittingFlag_beta" />
|
||||
|
@ -71,7 +71,7 @@ export default {
|
|||
},
|
||||
betaEnergyValid: false,
|
||||
gammaEnergyValid: false,
|
||||
isReanlyze: false
|
||||
isReanlyze: false,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -90,14 +90,14 @@ export default {
|
|||
this.betaEnergyValid = val
|
||||
},
|
||||
getFittingFlag_gamma(val) {
|
||||
console.log("zhiqian>>>"+this.gammaEnergyValid);
|
||||
console.log('zhiqian>>>' + this.gammaEnergyValid)
|
||||
this.gammaEnergyValid = val
|
||||
console.log("zhihou>>>"+this.gammaEnergyValid);
|
||||
console.log('zhihou>>>' + this.gammaEnergyValid)
|
||||
},
|
||||
handleReAnalyse() {
|
||||
// todo 1.fitting之后才能点击; 2.isReAnalyze需要缓存
|
||||
if(!this.gammaEnergyValid){
|
||||
return false;
|
||||
if (!this.gammaEnergyValid) {
|
||||
return false
|
||||
}
|
||||
const regExp = /^([A-Z]{1,}\d{1,})_/
|
||||
const regMatched = this.newSampleData.inputFileName.match(regExp)
|
||||
|
@ -157,9 +157,9 @@ export default {
|
|||
},
|
||||
handleExit() {
|
||||
this.gammaEnergyValid = this.isReanlyze
|
||||
console.log("exit>>>this.isReanlyze>>>"+this.isReanlyze);
|
||||
if(!this.isReanlyze && this.$ls.get("calibration-gamma:"+this.newSampleData.inputFileName)){
|
||||
this.$ls.remove("calibration-gamma:"+this.newSampleData.inputFileName) // 如果没有点击ReANalyze,删除fitting之后缓存的数据 20231101:xiao
|
||||
console.log('exit>>>this.isReanlyze>>>' + this.isReanlyze)
|
||||
if (!this.isReanlyze && this.$ls.get('calibration-gamma:' + this.newSampleData.inputFileName)) {
|
||||
this.$ls.remove('calibration-gamma:' + this.newSampleData.inputFileName) // 如果没有点击ReANalyze,删除fitting之后缓存的数据 20231101:xiao
|
||||
}
|
||||
this.visible = false
|
||||
},
|
||||
|
@ -182,6 +182,10 @@ export default {
|
|||
|
||||
<style lang="less" scoped>
|
||||
::v-deep {
|
||||
.ant-modal {
|
||||
top: 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.ant-form-item-label,
|
||||
.ant-form-item-control {
|
||||
line-height: 30px !important;
|
||||
|
|
|
@ -813,6 +813,12 @@ export default {
|
|||
}
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
::v-deep {
|
||||
.ant-modal {
|
||||
top: 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
.border {
|
||||
border: 1px solid #0b8c82;
|
||||
}
|
||||
|
|
|
@ -721,4 +721,10 @@ export default {
|
|||
.mt-20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
::v-deep {
|
||||
.ant-modal {
|
||||
top: 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -680,4 +680,10 @@ export default {
|
|||
.mt-20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
::v-deep {
|
||||
.ant-modal {
|
||||
top: 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -679,4 +679,10 @@ export default {
|
|||
.mt-20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
::v-deep {
|
||||
.ant-modal {
|
||||
top: 5px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue
Block a user