noob 4 rokov pred
rodič
commit
b202c1004d
1 zmenil súbory, kde vykonal 15 pridanie a 5 odobranie
  1. 15 5
      src/views/candidateManage/resume.vue

+ 15 - 5
src/views/candidateManage/resume.vue

@@ -22,7 +22,7 @@
                 v-for="(item, index) in info.answerVideoList"
                 :key="item.id"
                 class="active"
-                @click="handleSwitch(index)"
+                @click="handleSwitch(item,index)"
                 :class="active === index ? 'is-active' : ''"
               >{{ item.questionName }}</div>
             </div>
@@ -408,9 +408,13 @@ export default {
       // console.log(index, 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: {
@@ -434,7 +438,13 @@ export default {
       this.resetForm()
       val || (this.active = 0)
       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)
     }