|
@@ -52,10 +52,11 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
editScore() {
|
|
|
- if (this.quota.score == -1) {
|
|
|
+ console.error('演唱题分数', this.row.flatScoreArr.find(i => i.id === this.quota.id).score)
|
|
|
+ if (this.row.flatScoreArr.find(i => i.id === this.quota.id).score <= 0) {
|
|
|
this.$Message.warning('该学生暂未作答,无法评分!')
|
|
|
} else {
|
|
|
- musicModal = true
|
|
|
+ this.musicModal = true
|
|
|
}
|
|
|
},
|
|
|
handleZYData(data) {
|