处理 Load From File 来源的,ARR 和 Automatic Analysis Log 弹窗的展示逻辑,并给出提示
This commit is contained in:
parent
aa6ac23fd5
commit
765507f755
|
@ -1017,9 +1017,14 @@ export default {
|
||||||
type: 'a-menu-item',
|
type: 'a-menu-item',
|
||||||
title: 'ARR',
|
title: 'ARR',
|
||||||
handler: () => {
|
handler: () => {
|
||||||
this.arrOrRRRModalVisible = true
|
console.log(this.newSampleData)
|
||||||
this.arrOrRRRModalExtraData = {}
|
if (this.newSampleData.sampleId) {
|
||||||
this.arrOrRRRModalType = 1
|
this.arrOrRRRModalVisible = true
|
||||||
|
this.arrOrRRRModalExtraData = {}
|
||||||
|
this.arrOrRRRModalType = 1
|
||||||
|
} else {
|
||||||
|
this.$message.warning("The file isn't existed.")
|
||||||
|
}
|
||||||
},
|
},
|
||||||
show: this.isGamma,
|
show: this.isGamma,
|
||||||
},
|
},
|
||||||
|
@ -1134,8 +1139,17 @@ export default {
|
||||||
title: 'Automatic Analysis Log',
|
title: 'Automatic Analysis Log',
|
||||||
show: this.isBetaGamma || this.isGamma,
|
show: this.isBetaGamma || this.isGamma,
|
||||||
handler: () => {
|
handler: () => {
|
||||||
this.autoAnalysisMogModalType = this.isGamma ? 1 : this.isBetaGamma ? 2 : 1
|
if (this.isGamma) {
|
||||||
this.autoAnalysisMogModalVisible = true
|
if (this.newSampleData.sampleId) {
|
||||||
|
this.autoAnalysisMogModalType = this.isGamma ? 1 : this.isBetaGamma ? 2 : 1
|
||||||
|
this.autoAnalysisMogModalVisible = true
|
||||||
|
} else {
|
||||||
|
this.$message.warning("The file isn't existed.")
|
||||||
|
}
|
||||||
|
} else if (this.isBetaGamma) {
|
||||||
|
this.autoAnalysisMogModalType = this.isGamma ? 1 : this.isBetaGamma ? 2 : 1
|
||||||
|
this.autoAnalysisMogModalVisible = true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user