|
@@ -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
|