Procházet zdrojové kódy

修改表头信息添加删除影像资料

hxl13994548489 před 2 roky
rodič
revize
e093923d2c

+ 10 - 0
src/components/PeopleImage/index.vue

@@ -438,6 +438,16 @@ export default {
     // 删除
     handlePictureCardDelete(type) {
       this.dataForm[type] = ''
+      //添加刪除图像集合中的数据
+      var img_index=-1;
+      this.imagesIdList.forEach((item, index) => {
+        if (item.type == type) {                    
+          img_index =index;                 
+        }
+      });
+      if(img_index!=-1){
+        this.imagesIdList.splice(img_index, 1);
+      }
     },
     //预览图片
     handlePictureCardPreview(img) {

+ 3 - 3
src/views/PeopleManage/Player/PlayerExamine.vue

@@ -365,7 +365,7 @@
                 </el-form-item>
               </el-col>
               <el-col :span="24">
-                <el-form-item label="驳回信息" prop="referrerName">
+                <el-form-item label="备注" prop="referrerName">
                   <el-input
                     type="textarea"
                     style="width: 600px;"
@@ -403,7 +403,7 @@
               >上一步</el-button
             >
             <el-button
-              v-show="dialogTitle == '审核代理人'"
+              v-show="dialogTitle == '审核出单员'"
               size="mini"
               type="primary"
               style="background-color: #0ec216; border: 1px solid #0ec216"
@@ -411,7 +411,7 @@
               >审核通过</el-button
             >
             <el-button
-              v-show="dialogTitle == '审核代理人'"
+              v-show="dialogTitle == '审核出单员'"
               size="mini"
               type="danger"
               style="background-color: #de504c; border: 1px solid #de504c"

+ 3 - 3
src/views/PeopleManage/Player/PlayerExamineTeam.vue

@@ -360,7 +360,7 @@
               >上一步</el-button
             >
             <el-button
-              v-show="dialogTitle == '审核代理人'"
+              v-show="dialogTitle == '审核渠道负责人'"
               size="mini"
               type="primary"
               style="background-color: #0ec216; border: 1px solid #0ec216"
@@ -368,7 +368,7 @@
               >审核通过</el-button
             >
             <el-button
-              v-show="dialogTitle == '审核代理人'"
+              v-show="dialogTitle == '审核渠道负责人'"
               size="mini"
               type="danger"
               style="background-color: #de504c; border: 1px solid #de504c"
@@ -752,7 +752,7 @@ export default {
             : {};
         }
       });
-      this.dialogTitle = "审核代理人";
+      this.dialogTitle = "审核渠道负责人";
       this.dialogVisible = true;
     },
     //联级选择器触发事件

+ 2 - 2
src/views/PeopleManage/Player/PlayerManage.vue

@@ -293,7 +293,7 @@
                 </el-form-item>
               </el-col>
               <el-col :span="24">
-                <el-form-item label="驳回信息" prop="referrerName">
+                <el-form-item label="备注" prop="referrerName">
                   <el-input
                     type="textarea"
                     style="width: 600px;"
@@ -855,7 +855,7 @@ export default {
         }
         this.formDataDetail = res.data.sysUserInfo ? res.data.sysUserInfo : {};
         this.formData = res.data.sysUser;
-        this.dialogTitle = "编辑渠道信息";
+        this.dialogTitle = "编辑出单员信息";
         this.dialogVisible = true;
       } else {
         this.$message.error(res.msg);

+ 1 - 1
src/views/PeopleManage/Player/PlayerManageteam.vue

@@ -866,7 +866,7 @@ export default {
           });
         }
         this.formData = res.data.sysUser;
-        this.dialogTitle = "编辑渠道信息";
+        this.dialogTitle = "编辑渠道负责人";
         this.formDataDetail = res.data.sysUserInfo ? res.data.sysUserInfo : {};
         this.dialogVisible = true;
       } else {