Bladeren bron

更新文件上传判断及选择视频带入问题文本

noob 4 jaren geleden
bovenliggende
commit
4ba7c0b5d8
2 gewijzigde bestanden met toevoegingen van 12 en 5 verwijderingen
  1. 2 2
      src/views/candidateManage/candidateAll.vue
  2. 10 3
      src/views/companyManage/procedureManage.vue

+ 2 - 2
src/views/candidateManage/candidateAll.vue

@@ -4,7 +4,7 @@
  * @Autor: XuTongZhang
  * @Date: 2020-07-30 10:17:25
  * @LastEditors  : yuanrunwei
- * @LastEditTime : 2021-02-24 10:47:47
+ * @LastEditTime : 2021-02-25 14:23:31
 -->
 <template>
 <div class="indexPage">
@@ -736,7 +736,7 @@ export default {
     },
     handleBefore (file) {
       console.log(file)
-      if (file.type !== 'application/x-zip-compressed') {
+      if (file.type !== 'application/x-zip-compressed' && file.type !== 'application/zip') {
         this.$message.error('请上传zip格式')
         return false
       }

+ 10 - 3
src/views/companyManage/procedureManage.vue

@@ -3,8 +3,8 @@
  * @Version: 1.0
  * @Autor: XuTongZhang
  * @Date: 2020-07-28 16:00:46
- * @LastEditors: XuTongZhang
- * @LastEditTime: 2020-08-11 15:48:51
+ * @LastEditors  : yuanrunwei
+ * @LastEditTime : 2021-02-25 14:36:27
 -->
 <template>
 <div class="indexPage">
@@ -29,7 +29,7 @@
                         <el-button v-if="index==0" @click="addDomain" type="success">新增</el-button>
                         <el-button type="danger" v-else @click.prevent="index === 0 || removeDomain(item)">删除</el-button>
                     </div>
-                    <el-select v-model="item.videoIdList" multiple filterable :disabled="state === 2" default-first-option placeholder="请选择面试视频">
+                    <el-select v-model="item.videoIdList" multiple filterable :disabled="state === 2" default-first-option placeholder="请选择面试视频" @change="param => handleChange(param,item)">
                         <el-option v-for="item in downList" :key="item.key || item.id" :label="item.videoName" :value="item.id">
                         </el-option>
                     </el-select>
@@ -336,6 +336,13 @@ export default {
     callPage (val) {
       this.page = val
       this.queryData()
+    },
+    handleChange (param, item) {
+      if (!item.questionName) {
+        const array = this.downList.filter(item => item.id === param[0])
+        item.questionName = array[0].videoName
+        this.$forceUpdate()
+      }
     }
   },
   watch: {