|
@@ -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格式的文件");
|
|
|
}
|
|
|
|
|
|
|