|
@@ -2,14 +2,14 @@
|
|
<div>
|
|
<div>
|
|
<enroll-report :generation="generation" :optional-majors="optionalMajors"
|
|
<enroll-report :generation="generation" :optional-majors="optionalMajors"
|
|
:dispatch-info="dispatchInfo"></enroll-report>
|
|
:dispatch-info="dispatchInfo"></enroll-report>
|
|
- <div v-if="dispatchInfo&&dispatchInfo.eSignImage" class="mt40 mb40 ml40 f24">
|
|
|
|
|
|
+ <div class="mt40 mb40 ml40 f24">
|
|
<div class="fx-row bold fx-sta-cen">
|
|
<div class="fx-row bold fx-sta-cen">
|
|
<span style="white-space: nowrap;">签名:</span>
|
|
<span style="white-space: nowrap;">签名:</span>
|
|
- <el-image :src="dispatchInfo.eSignImage" fit="contain" style="height: 36px; width: 120px;"></el-image>
|
|
|
|
|
|
+ <el-image v-if="showESign" :src="dispatchInfo.eSignImage" fit="contain" style="height: 36px; width: 120px;"></el-image>
|
|
</div>
|
|
</div>
|
|
<div class="fx-row bold fx-sta-cen mt10">
|
|
<div class="fx-row bold fx-sta-cen mt10">
|
|
- <span>报告日期:</span>
|
|
|
|
- <span>{{ dispatchInfo.activeDate }}</span>
|
|
|
|
|
|
+ <span>日期:</span>
|
|
|
|
+ <span v-if="showESign">{{ dispatchInfo.activeDate }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -34,6 +34,9 @@ export default {
|
|
},
|
|
},
|
|
optionalMajors() {
|
|
optionalMajors() {
|
|
return this.getOptionalMajors() || []
|
|
return this.getOptionalMajors() || []
|
|
|
|
+ },
|
|
|
|
+ showESign() {
|
|
|
|
+ return !!this.dispatchInfo?.eSignImage
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|