Parcourir la source

用印详情增加已签回状态标记、合同详情增加预览word

jwyu il y a 3 ans
Parent
commit
2a2104ca18
2 fichiers modifiés avec 12 ajouts et 3 suppressions
  1. 10 3
      pages-approve/contract/detail.vue
  2. 2 0
      pages-approve/seal/detail.vue

+ 10 - 3
pages-approve/contract/detail.vue

@@ -208,7 +208,8 @@
 			},
 			//回签附件
 			checkBackFiles(){
-				const reg = /\.(pdf)|\.doc|\.docx$/;
+				const reg = /\.(pdf)$/;
+				const reg2=	/\.doc|\.docx$/
 				return this.detail&&this.detail.CheckBackFileUrl&&this.detail.CheckBackFileUrl.split("#").map((item) => {
 					if (reg.test(item)) {
 						return {
@@ -216,7 +217,13 @@
 							url: item,
 							img: require("@/pages-approve/static/pdf.png"),
 						};
-					} else {
+					} else if(reg2.test(item)){
+						return {
+							type: "word",
+							url: item,
+							img: require("@/pages-approve/static/word.png"),
+						};
+					}else {
 						return {
 							type: "img",
 							url: item,
@@ -435,7 +442,7 @@
 			
 			// 预览合同文件
 			preViewContract(e) {
-				if (e.type === "pdf") {
+				if (e.type === "pdf"||e.type==='word') {
 					preViewFile(e.url)
 				} else {
 					this.handlePreviewImg(e.url)

+ 2 - 0
pages-approve/seal/detail.vue

@@ -198,6 +198,8 @@
 					return require('../static/recall-icon.png')
 				}else if(this.detail.Status==='已作废'){
 					return require('../static/cancel-icon.png')
+				}else if(this.detail.Status==='已签回'){
+					return require('../static/draw-back-icon.png')
 				}
 			},
 			//页面显示的回签附件