|
@@ -507,7 +507,7 @@ export default {
|
|
this.form.rankIdType = 0;
|
|
this.form.rankIdType = 0;
|
|
}
|
|
}
|
|
const xmlres = await axios(this.detail.xmlUrl)
|
|
const xmlres = await axios(this.detail.xmlUrl)
|
|
- this.gradual = getGradualLengthByXml(xmlres.data)
|
|
|
|
|
|
+ this.gradual = getGradualLengthByXml(xmlres.data).filter(item => item.length === 2)
|
|
this.partListNames = this.getPartListNames(xmlres.data)
|
|
this.partListNames = this.getPartListNames(xmlres.data)
|
|
this.FeatchDetailList();
|
|
this.FeatchDetailList();
|
|
} else {
|
|
} else {
|
|
@@ -529,7 +529,7 @@ export default {
|
|
const xmlRead = new FileReader()
|
|
const xmlRead = new FileReader()
|
|
xmlRead.onload = res => {
|
|
xmlRead.onload = res => {
|
|
this.partListNames = this.getPartListNames(res.target.result)
|
|
this.partListNames = this.getPartListNames(res.target.result)
|
|
- this.gradual = getGradualLengthByXml(xmlres.data)
|
|
|
|
|
|
+ this.gradual = getGradualLengthByXml(xmlres.data).filter(item => item.length === 2)
|
|
for (let j = 0; j < this.form.sysMusicScoreAccompaniments.length; j++) {
|
|
for (let j = 0; j < this.form.sysMusicScoreAccompaniments.length; j++) {
|
|
this.form.sysMusicScoreAccompaniments[j].track = this.partListNames[j]
|
|
this.form.sysMusicScoreAccompaniments[j].track = this.partListNames[j]
|
|
if (!this.form.sysMusicScoreAccompaniments[j].speed) {
|
|
if (!this.form.sysMusicScoreAccompaniments[j].speed) {
|