diff --git a/src/components/CaseCommon/caseDetail.vue b/src/components/CaseCommon/caseDetail.vue index 712cfc1..7fcabac 100644 --- a/src/components/CaseCommon/caseDetail.vue +++ b/src/components/CaseCommon/caseDetail.vue @@ -125,7 +125,7 @@ - +
案卷图片:
@@ -361,6 +361,14 @@ }, imgList() { return this.fileIdVerify.concat(this.fileIdProcess).concat(this.fileIdCheck) + }, + // 是否显示案卷图片 + showImage: function() { + if (this.fileIdVerify.length === 0 && this.fileIdProcess.length === 0 && this.fileIdCheck.length === 0) { + return false + } else { + return true + } } }, created() { @@ -699,8 +707,8 @@ } .edit_btns{ .edit_btn{ - float:right; - margin:7px 3px;//为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2 + float: right; + margin:7px 3px; //为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2 } } .app-container{ @@ -719,6 +727,8 @@ } .title{ margin-left: 38px; + margin-top: 10px; + margin-bottom: 10px; font-size: 14px; font-weight: bold; }