liuxiangqi 1 ano atrás
pai
commit
58b28f0336

+ 33 - 0
src/components/FileUpload/index.vue

@@ -9,6 +9,7 @@
 			:on-success="successHandleList"
 			:index="index"
 			:data="params"
+      :on-preview="previewFile"
 			multiple
 			:accept="accept"
       :headers="headers"
@@ -131,6 +132,38 @@
 			this.fileList = this.files
 		},
 		methods: {
+      previewFile(file) {
+        console.log(file, "********")
+        if (file) {
+          const addTypeArray = file.name.split(".");
+          const addType = addTypeArray[addTypeArray.length - 1];
+          console.log(addType);
+          if (addType === "pdf") {
+            let routeData = this.$router.resolve({
+              path: "/pdfPreview",
+              query: { url: file.filePath },
+            });
+            window.open(routeData.href, "_blank");
+          }
+          //".rar, .zip, .doc, .docx, .xls, .txt, .pdf, .jpg,  .png, .jpeg,"
+          else if (addType === "doc" || addType === "docx" || addType === "xls" || addType === "xlsx") {
+            // window.open(
+            //   "http://view.officeapps.live.com/op/view.aspx?src=" + file.filePath
+            // );
+            window.open(file.filePath);
+          } else if (addType === "txt") {
+            window.open(file.filePath);
+          } else if (["png", "jpg", "jpeg"].includes(addType)) {
+            window.open(file.filePath);
+          } else if (addType === "rar" || addType === "zip") {
+            this.$message({
+              message: "该文件类型暂不支持预览",
+              type: "warning",
+            });
+             return false;
+          }
+        }
+      },
 			handleSuccess(res, file) {
 				if (res.code == 200) {
 					this.singleFile.name = file.name

+ 7 - 0
src/router/index.js

@@ -156,6 +156,13 @@ export const constantRoutes = [
     hidden: true,
     name: 'enclosurePreview',
     meta: { title: '文件预览'}
+  },
+  {
+    path: '/pdfPreview',
+    component: (resolve) => require(['@/views/pdfPreview/index'], resolve),
+    hidden: true,
+    name: 'pdfPreview',
+    meta: { title: 'PDF预览'}
   }
 ]
 

+ 1 - 2
src/utils/validate.js

@@ -215,12 +215,11 @@ export function validMobile(rule, value, cb) {
 
 export function validPhone(rule, value, cb) {
   if (!isPhone(value)) {
-    cb(new Error('固定电话号码格式错误,格式如xxx-xxxxxxxx'))
+    cb(new Error('请输入正确的固定电话格式,例如xxxxxxxxxxx,xxxx-xxxxxxx'))
   } else {
     cb()
   }
 }
-
 export function validZhcn(rule, value, cb) {
   if (!isZhcn(value, 1, 25)) {
     cb(new Error('仅可输入汉字'))

+ 2 - 2
src/views/enterprise/ent/edit.vue

@@ -424,10 +424,10 @@ export default {
       total: 0,
       registerRules: {
         linkPhone: [
-          { validator: validPhone, trigger: "blur", message: "请输入正确的固定电话格式,例如xxxxxxxxxxx,xxxx-xxxxxxx" },
+          { validator: validPhone, trigger: "blur" },
         ],
         legalPhone: [
-          { validator: validPhone, trigger: "blur", message: "请输入正确的固定电话格式,例如xxxxxxxxxxx,xxxx-xxxxxxx" },
+          { validator: validPhone, trigger: "blur" },
         ],
         userName: [
           { required: true, trigger: "blur", message: "请输入您的账号" },

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

@@ -11,6 +11,7 @@
       :on-success="handleFileSuccess"
       :auto-upload="false"
       :data="params"
+      multiple
       drag
     >
       <i class="el-icon-upload"></i>
@@ -110,9 +111,23 @@
       handleFileSuccess(response, file, fileList) {
         this.open = false;
         this.upload.isUploading = false;
-        this.$refs.upload.clearFiles();
-        this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
-        this.$emit('refreshData')
+        // 在全部文件完成上传后调用,清空上传列表
+        let isAllSuccess = true;
+        for (let item of fileList) {
+        	if (item.status != "success") {
+        		isAllSuccess = false;
+        		break;
+        	}
+        }
+        if (isAllSuccess) {
+        	// 清空上传文件列表,否则影响上传文件数限制判断
+        	this.$refs.upload.clearFiles();
+          this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
+          this.$emit('refreshData')
+        }
+
+        // this.$refs.upload.clearFiles();
+
       },
       // 提交上传文件
       submitFileForm() {

+ 104 - 0
src/views/pdfPreview/index.vue

@@ -0,0 +1,104 @@
+<template>
+  <div class="pdfMain">
+    <!-- <div class="pdfBar">
+      <div class="pdf_print">
+        <a :href="url" download target="_blank" class="btnDownload">下载</a>
+      </div>
+    </div> -->
+    <div class="pdfBox">
+      <pdf v-for="i in numPages" :key="i"  :src="src" :page="i" style="display: inline-block; width: 100%"></pdf>
+    </div>
+  </div>
+</template>
+
+<script>
+  import pdf from 'vue-pdf'
+  export default {
+    components: {
+      pdf
+    },
+    data() {
+      return {
+        loading: false,
+        url: '',
+        src: '',
+        numPages: undefined,
+        currentPage: 0, // pdf文件页码
+        pageCount: 0, // pdf文件总页数
+      }
+    },
+    created() {
+      this.loading = true
+      this.url = this.$route.query.url || ''
+      if(this.url != '') {
+        this.getPageNums();
+      }
+    },
+    mounted() {
+
+    },
+    methods: {
+      getPageNums() {
+        let task = pdf.createLoadingTask({
+          url: this.url,
+          // 引入pdf字体
+          // cMapUrl: '/cmaps/',
+          cMapUrl: 'https://cdn.jsdelivr.net/npm/pdfjs-dist@2.5.207/cmaps/',
+          cMapPacked: true
+        });
+        this.src = task;
+       this.src.promise.then(pdf => {
+          this.numPages = pdf.numPages;
+          this.loading = false;
+        });
+      },
+      changePdfPage (val) {
+        if (val === 0 && this.currentPage > 1) {
+          this.currentPage--
+        }
+        if (val === 1 && this.currentPage < this.pageCount) {
+          this.currentPage++
+        }
+      },
+      // pdf加载时
+      loadPdfHandler (e) {
+        this.currentPage = 1
+        this.loading = false;
+        console.log('end', e);
+      }
+    }
+  }
+</script>
+
+<style lang="scss" scoped>
+.pdfMain {
+    position: relative;
+    min-height: calc(100vh);
+    overflow-x: hidden;
+    background-color: #fff;
+  }
+  .pdfBar {
+    padding: 20px 0;
+    width: 1200px;
+    margin: 0 auto;
+    display: flex;
+    justify-content: space-between;
+    .oper_pdf {
+      flex: 1;
+    }
+    .btnDownload {
+      padding: 9px 15px;
+      color: #fff;
+      font-size: 12px;
+      background-color: #1890ff;
+      text-align: center;
+      border-radius: 4px;
+      display: block;
+    }
+  }
+  .pdfBox {
+    height: calc(100vh - 75px);
+    width: 1200px;
+    margin: 0 auto;
+  }
+</style>