Explorar el Código

支持doc文件上传

SanHQin hace 4 meses
padre
commit
557c34ce05
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/components/pages/test/add/edit/index.vue

+ 3 - 3
src/components/pages/test/add/edit/index.vue

@@ -150,7 +150,7 @@ export default {
       input.type = "file";
       // input.accept = ".wav";
       // input.accept = "audio/*, .txt, .pdf, .xlsx";
-      input.accept = ".docx";
+      input.accept = ".docx,.doc";
       input.click();
       input.onchange = async () => {
         this.loading = true;
@@ -165,9 +165,9 @@ export default {
         //   });
 				// }
 				console.log("file",file)
-        if (!/\.(docx)$/i.test(file.name)) {
+        if (!/\.(docx|doc)$/i.test(file.name)) {
           this.loading = false;
-          return this.$message.error("请上传.docx格式的文件");
+          return this.$message.error("请上传.docx或.doc格式的文件");
         }