|
@@ -22,7 +22,7 @@
|
|
v-for="(item, index) in info.answerVideoList"
|
|
v-for="(item, index) in info.answerVideoList"
|
|
:key="item.id"
|
|
:key="item.id"
|
|
class="active"
|
|
class="active"
|
|
- @click="handleSwitch(index)"
|
|
|
|
|
|
+ @click="handleSwitch(item,index)"
|
|
:class="active === index ? 'is-active' : ''"
|
|
:class="active === index ? 'is-active' : ''"
|
|
>{{ item.questionName }}</div>
|
|
>{{ item.questionName }}</div>
|
|
</div>
|
|
</div>
|
|
@@ -408,9 +408,13 @@ export default {
|
|
// console.log(index, val)
|
|
// console.log(index, val)
|
|
this.$set(this[arr][index], 'value', val)
|
|
this.$set(this[arr][index], 'value', val)
|
|
},
|
|
},
|
|
- handleSwitch (param) {
|
|
|
|
- this.active = param
|
|
|
|
- this.$api.post('/question/addUsedVideo')
|
|
|
|
|
|
+ handleSwitch (item, index) {
|
|
|
|
+ this.active = index
|
|
|
|
+ this.$api.post('/question/addUsedVideo', {
|
|
|
|
+ reqdata: {
|
|
|
|
+ videoId: item.id
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -434,7 +438,13 @@ export default {
|
|
this.resetForm()
|
|
this.resetForm()
|
|
val || (this.active = 0)
|
|
val || (this.active = 0)
|
|
if (val) {
|
|
if (val) {
|
|
- this.$api.post('/question/addUsedVideo')
|
|
|
|
|
|
+ if (this.info.answerVideoList.length) {
|
|
|
|
+ this.$api.post('/question/addUsedVideo', {
|
|
|
|
+ reqdata: {
|
|
|
|
+ videoId: this.info.answerVideoList[0].id
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
}
|
|
}
|
|
this.type && this.getScore(this.info.id)
|
|
this.type && this.getScore(this.info.id)
|
|
}
|
|
}
|