浏览代码

提交注册时弹窗校验

刘湘琪 2 年之前
父节点
当前提交
ee07f7d6e5

+ 11 - 2
src/views/common/registerFirst.vue

@@ -745,7 +745,7 @@ export default {
           return
         }
       })
-      this.$refs.registerForm.validate(valid => {
+      this.$refs.registerForm.validate((valid,obj) => {
         if (valid) {
           this.loading = true;
           if(this.token) {
@@ -780,7 +780,16 @@ export default {
               // }
             })
           }
-
+        }else {
+          const a = []
+          for (let key in obj) {
+            a.push(obj[key][0].message)
+          }
+          this.$message({
+            message: a[0],
+            type: "warning"
+          })
+          return false
         }
       });
     }

+ 2 - 0
src/views/enterprise/declare/components/EnclosureInfo.vue

@@ -27,6 +27,7 @@
         :limit.sync="queryParams.pageSize"
         @pagination="getList"/>
     </div>
+    <iframe style="width: 100%;height: 500px;" :src="pdfSrc"></iframe>
   </div>
 </template>
 
@@ -52,6 +53,7 @@
         selectionList: [],
         ids: '',
         info: {},
+        pdfSrc: 'http://124.232.146.72:7015/api/profile/upload/88a09dbc8e2f4a6096e6ea3dc934ba77.xls',
         queryParams: {
           pageNum: 1,
           pageSize: 10

+ 44 - 12
src/views/enterprise/ent/edit.vue

@@ -779,15 +779,17 @@ export default {
     },
     handleRegister() {
       this.form.mainProducts = this.form.mainProductArray.join(',')
-      validLicenseApi(this.registerForm.license).then(res => {
-        // true存在
-        if(res.data) {
-          this.$message.error('统一社会信用代码已经存在,不可以重复注册');
-          return
-        }
-      })
+      if(this.form.license) {
+        validLicenseApi(this.form.license).then(res => {
+          // true存在
+          if(res.data) {
+            this.$message.error('统一社会信用代码已经存在,不可以重复注册');
+            return
+          }
+        })
+      }
       if(this.type == 'update') {
-        this.$refs.form.validate(valid => {
+        this.$refs.form.validate((valid, obj) => {
           if (valid) {
             this.loading = true;
             updateEntInfoApi(this.form).then(res => {
@@ -805,10 +807,20 @@ export default {
             }).catch(() => {
               this.loading = false;
             })
-          }
+          }else {
+            const a = []
+            for (let key in obj) {
+              a.push(obj[key][0].message)
+            }
+            this.$message({
+              message: a[0],
+              type: "warning"
+            })
+            return false
+        }
         });
       }else if(this.type == 'add'){
-        this.$refs.form.validate(valid => {
+        this.$refs.form.validate((valid, obj) => {
           if (valid) {
             this.loading = true;
             registerEnterUserApi(this.form).then(res => {
@@ -826,10 +838,20 @@ export default {
             }).catch(() => {
               this.loading = false;
             })
+          }else {
+            const a = []
+            for (let key in obj) {
+              a.push(obj[key][0].message)
+            }
+            this.$message({
+              message: a[0],
+              type: "warning"
+            })
+            return false
           }
         });
       }else if(this.type == 'updateEnt') {
-        this.$refs.form.validate(valid => {
+        this.$refs.form.validate((valid,obj) => {
           if (valid) {
             this.loading = true;
             entUserAudit(this.form).then(res => {
@@ -847,7 +869,17 @@ export default {
             }).catch(() => {
               this.loading = false;
             })
-          }
+          }else {
+            const a = []
+            for (let key in obj) {
+              a.push(obj[key][0].message)
+            }
+            this.$message({
+              message: a[0],
+              type: "warning"
+            })
+            return false
+        }
         });
       }
 

+ 27 - 3
src/views/enterprise/project/components/UploadEnclosure.vue

@@ -4,6 +4,7 @@
       ref="upload"
       :accept="enclosuresAccept"
       :headers="upload.headers"
+      :before-upload="beforeUpload"
       :action="upload.url"
       :disabled="upload.isUploading"
       :on-progress="handleFileUploadProgress"
@@ -44,10 +45,11 @@
     data() {
       return {
         // 项目导入参数
-        enclosuresAccept: 'image/*, application/pdf, application/vnd.ms-excel,application/msword,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.wordprocessingml.document',
-        encTip: '上传格式为图片、PDF、WORD、EXCEL,最大不超过15M',
+        enclosuresAccept: 'image/*, application/pdf, application/vnd.ms-excel,application/msword,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.wordprocessingml.document,text/plain,application/pdf,application/zip, application/x-rar',
+        encTip: '上传格式为图片、PDF、WORD、EXCEL,ZIP,RAR,最大不超过15M',
+        sizeLimit: 15,
         upload: {
-          title: "导入资料附件",      
+          title: "导入资料附件",
           // 是否禁用上传
           isUploading: false,
           // 设置上传的请求头部
@@ -78,6 +80,28 @@
         this.form.fileList = files;
         this.$refs.form.validateField('fileList');
       },
+      beforeUpload(file) {
+      	const isLTM = this.sizeLimit > 0 ? file.size / 1024 / 1024 < this.sizeLimit : true
+      	let isInAccept = true
+      	if (this.enclosuresAccept) {
+      		isInAccept = false
+      		if (file.type.indexOf('image') != -1) {
+      			if (this.enclosuresAccept.indexOf('image') != -1) {
+      				isInAccept = true
+      			}
+      		} else {
+      			isInAccept = this.enclosuresAccept.indexOf(file.type) == -1 ? false : true
+      		}
+      		if (!isInAccept) {
+      			this.$message.error(`文件格式错误`)
+      		} else {
+      			if (!isLTM) {
+      				this.$message.error(`文件大小不能超过 ${this.sizeLimit}MB!`)
+      			}
+      		}
+      	}
+      	return isInAccept && isLTM
+      },
       // 文件上传中处理
       handleFileUploadProgress(event, file, fileList) {
         this.upload.isUploading = true;