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
+1 -1
View File
@@ -1,6 +1,6 @@
<template>
<div class='diolag-area'>
<a-spin :spinning='spinLoading'>
<a-spin :spinning='spinLoading' @keyup.enter.native="searchQuery">
<a-form-model
class='tag-module'
ref='ruleForm'
@@ -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>