Browse Source

feature 1001580

智能搜索搜索字段增加关键词与摘要
Kevin Jiang 2 years ago
parent
commit
21663e1fa9

+ 1 - 0
src/views/report/components/TemplateSelect.vue

@@ -0,0 +1 @@
+<!-- 报告模板选择  -->

+ 1 - 1
src/views/reportTemplate/ReportTemplateListView.vue

@@ -73,8 +73,8 @@ onMounted(() => {
     <SpinComponent :spinning="loading">
       <a-card v-for="(item, index) in templates" :key="index" :title="item.name" class="template-item">
         <template #extra>
-          <RouterLink :to="{ name: 'ReportTemplateEditor', params: { id: item.id }}">编辑</RouterLink>
           <a-button type="link">使用模板创建报告</a-button>
+          <RouterLink :to="{ name: 'ReportTemplateEditor', params: { id: item.id }}">编辑</RouterLink>
           <a-popconfirm
             :title="'确定删模板 ' + item.name"
             ok-text="确定"