|
@@ -234,12 +234,6 @@ export default {
|
|
|
}
|
|
|
|
|
|
this.onCheckOrder() // 查询有没有待支付订单
|
|
|
- // this.form.levelId = 1
|
|
|
- // this.practiceNum = 2
|
|
|
- // this.practiceSongIdList = ""
|
|
|
- // this.performNum = 2
|
|
|
- // this.performSongIdList = ""
|
|
|
- // this.getExamSubjectSong()
|
|
|
},
|
|
|
methods: {
|
|
|
async onCheckOrder() {
|
|
@@ -266,11 +260,11 @@ export default {
|
|
|
if(!orderNo) {
|
|
|
return
|
|
|
}
|
|
|
- localStorage.removeItem("examRegistrationParams")
|
|
|
+ // localStorage.removeItem("examRegistrationParams")
|
|
|
this.onCloseOrder(orderNo)
|
|
|
})
|
|
|
} else {
|
|
|
- localStorage.removeItem("examRegistrationParams")
|
|
|
+ // localStorage.removeItem("examRegistrationParams")
|
|
|
}
|
|
|
},
|
|
|
async onCloseOrder(orderNo) {
|
|
@@ -586,6 +580,7 @@ export default {
|
|
|
result.data.forEach(item => {
|
|
|
item.value = item.id
|
|
|
item.text = item.songName + '-' + item.songAuthor
|
|
|
+ item.uploadUrl = item.fileUrlList
|
|
|
tempArr.push(item)
|
|
|
})
|
|
|
this.songList = tempArr
|
|
@@ -797,7 +792,7 @@ export default {
|
|
|
type: item.type,
|
|
|
songName: item.songName,
|
|
|
songAuthor: item.songAuthor,
|
|
|
- uploadUrl: item.fileUrlList
|
|
|
+ uploadUrl: item.uploadUrl
|
|
|
})
|
|
|
})
|
|
|
} else { // 自选
|
|
@@ -824,7 +819,7 @@ export default {
|
|
|
type: item.type,
|
|
|
songName: item.songName,
|
|
|
songAuthor: item.songAuthor,
|
|
|
- uploadUrl: item.fileUrlList
|
|
|
+ uploadUrl: item.uploadUrl
|
|
|
})
|
|
|
})
|
|
|
} else {
|