This commit is contained in:
zhaomeijing
2022-06-27 17:09:10 +08:00
parent af9410acc5
commit 4a6588aea6
2 changed files with 3 additions and 3 deletions
@@ -3,9 +3,9 @@
<a-modal v-model="visible" :maskClosable="false" :footer="[]" :title="title">
<div style='display: flex'>
<span style='flex: 1'>
{{ this.template.templateName === undefined ? '暂无模板': this.template.templateName }}
{{ this.template.templateName === undefined || this.template.templateName === null? '暂无模板': this.template.templateName }}
</span>
<span style='flex: none' @click='download' v-if='this.template.templateName !== undefined'>
<span style='flex: none' @click='download' v-if='this.template.templateName !== undefined && this.template.templateName !== null'>
<a-icon type="download"/>
</span>
</div>