处理弹窗的样式问题

This commit is contained in:
任珮宇 2023-11-08 18:42:07 +08:00
parent 7e637c8c85
commit 8282663e3e
5 changed files with 37 additions and 9 deletions

View File

@ -10,7 +10,7 @@
> >
<a-tabs :animated="false" v-model="currTab"> <a-tabs :animated="false" v-model="currTab">
<a-tab-pane tab="Gamma Detector Calibration" key="gamma"> <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>
<a-tab-pane tab="Beta Detector Calibration" key="beta"> <a-tab-pane tab="Beta Detector Calibration" key="beta">
<beta-detector-calibration @isFitting="getFittingFlag_beta" /> <beta-detector-calibration @isFitting="getFittingFlag_beta" />
@ -71,7 +71,7 @@ export default {
}, },
betaEnergyValid: false, betaEnergyValid: false,
gammaEnergyValid: false, gammaEnergyValid: false,
isReanlyze: false isReanlyze: false,
} }
}, },
methods: { methods: {
@ -90,14 +90,14 @@ export default {
this.betaEnergyValid = val this.betaEnergyValid = val
}, },
getFittingFlag_gamma(val) { getFittingFlag_gamma(val) {
console.log("zhiqian>>>"+this.gammaEnergyValid); console.log('zhiqian>>>' + this.gammaEnergyValid)
this.gammaEnergyValid = val this.gammaEnergyValid = val
console.log("zhihou>>>"+this.gammaEnergyValid); console.log('zhihou>>>' + this.gammaEnergyValid)
}, },
handleReAnalyse() { handleReAnalyse() {
// todo 1.fitting; 2.isReAnalyze // todo 1.fitting; 2.isReAnalyze
if(!this.gammaEnergyValid){ if (!this.gammaEnergyValid) {
return false; return false
} }
const regExp = /^([A-Z]{1,}\d{1,})_/ const regExp = /^([A-Z]{1,}\d{1,})_/
const regMatched = this.newSampleData.inputFileName.match(regExp) const regMatched = this.newSampleData.inputFileName.match(regExp)
@ -157,9 +157,9 @@ export default {
}, },
handleExit() { handleExit() {
this.gammaEnergyValid = this.isReanlyze this.gammaEnergyValid = this.isReanlyze
console.log("exit>>>this.isReanlyze>>>"+this.isReanlyze); console.log('exit>>>this.isReanlyze>>>' + this.isReanlyze)
if(!this.isReanlyze && this.$ls.get("calibration-gamma:"+this.newSampleData.inputFileName)){ if (!this.isReanlyze && this.$ls.get('calibration-gamma:' + this.newSampleData.inputFileName)) {
this.$ls.remove("calibration-gamma:"+this.newSampleData.inputFileName) // ReANalyzefitting 20231101:xiao this.$ls.remove('calibration-gamma:' + this.newSampleData.inputFileName) // ReANalyzefitting 20231101:xiao
} }
this.visible = false this.visible = false
}, },
@ -182,6 +182,10 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
::v-deep { ::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 15px;
}
.ant-form-item-label, .ant-form-item-label,
.ant-form-item-control { .ant-form-item-control {
line-height: 30px !important; line-height: 30px !important;

View File

@ -813,6 +813,12 @@ export default {
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 15px;
}
}
.border { .border {
border: 1px solid #0b8c82; border: 1px solid #0b8c82;
} }

View File

@ -721,4 +721,10 @@ export default {
.mt-20 { .mt-20 {
margin-top: 20px; margin-top: 20px;
} }
::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 15px;
}
}
</style> </style>

View File

@ -680,4 +680,10 @@ export default {
.mt-20 { .mt-20 {
margin-top: 20px; margin-top: 20px;
} }
::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 15px;
}
}
</style> </style>

View File

@ -679,4 +679,10 @@ export default {
.mt-20 { .mt-20 {
margin-top: 20px; margin-top: 20px;
} }
::v-deep {
.ant-modal {
top: 5px;
padding-bottom: 15px;
}
}
</style> </style>