fix: 修改Arr和RRR保存的文件名称

This commit is contained in:
xiaoguangbin 2023-12-11 20:04:50 +08:00
parent f0efa99df5
commit 96bf95741c

View File

@ -115,9 +115,9 @@ export default {
// saveAs(strData, `${this.type == 2 ?'Gamma-':'Beta-'} RRR.txt`) // saveAs(strData, `${this.type == 2 ?'Gamma-':'Beta-'} RRR.txt`)
// } // }
if (this.type == 1 || this.type == 3) { if (this.type == 1 || this.type == 3) {
saveAs(strData, `${name}_ARR.txt`) saveAs(strData, `ARR_${name}.txt`)
} else { } else {
saveAs(strData, `${name}_RRR.txt`) saveAs(strData, `RRR_${name}.txt`)
} }
// let _this = this // let _this = this
// this.$confirm({ // this.$confirm({