'案件编辑页面文件预览实现'

This commit is contained in:
hhl123456789
2023-10-01 16:11:25 +08:00
parent 711b6e621f
commit 1e0aca1b29
@@ -794,22 +794,22 @@ export default {
this.formData = this.form; this.formData = this.form;
this.fileList = []; this.fileList = [];
if (this.flag == "1" || this.flag == "0") { if (this.flag == "1" || this.flag == "0") {
this.form2.paymentArr = this.initpaymentArr; this.form2.paymentArr = this.initpaymentArr;
this.form3.paymentArr1 = this.initpaymentArr1; this.form3.paymentArr1 = this.initpaymentArr1;
console.log(this.caseAttachList, "caseAttachList"); console.log(this.caseAttachList, "caseAttachList");
this.caseAttachList.forEach((item) => { this.caseAttachList.forEach((item) => {
if (item.annexType == 2) { if (item.annexType == 2) {
this.applicateArr.push(item.annexName); this.applicateArr.push(item.annexName);
} }
if (item.annexType == 6) { if (item.annexType == 6) {
this.quiltArr.push(item.annexName); this.quiltArr.push(item.annexName);
} }
}); });
this.fileList = this.caseAttachList; this.fileList = this.caseAttachList;
this.fileList.forEach((item) => { this.fileList.forEach((item) => {
item["name"] = item.annexName; item["name"] = item.annexName;
item["certificatePath"] = item.annexPath; item["certificatePath"] = item.annexPath;
}); });
} }
if (this.flag == "2") { if (this.flag == "2") {
this.form2.paymentArr = [ this.form2.paymentArr = [
@@ -851,13 +851,16 @@ export default {
return window.location.origin + "/API/evidence/upload"; return window.location.origin + "/API/evidence/upload";
}, },
handlePreview(file) { handlePreview(file) {
if (file && file.response.data.annexName) { if (this.flag == "2") {
window.open( window.open(
window.location.origin + "/API" + file.response.data.annexName, window.location.origin + "/API" + file.response.data.annexName,
"_blank" "_blank"
); );
} else { } else if (this.flag == "1") {
this.$message.warning("暂不支持预览"); window.open(
window.location.origin + "/API" + file.certificatePath,
"_blank"
);
} }
}, },