Browse Source

合并代码

humingbo 1 year ago
parent
commit
e6f159f204
1 changed files with 6 additions and 5 deletions
  1. 6 5
      src/views/meeting/weeklyRecords.vue

+ 6 - 5
src/views/meeting/weeklyRecords.vue

@@ -1,8 +1,9 @@
 <template>
   <div class="app-container" >
-<!--    <div style="display: flex;justify-content: space-between;">
+    <div style="display: flex;justify-content: space-between;margin-bottom: 8px">
+      <div style="font-size: 24px">{{ title }}</div>
       <el-button size="mini" @click="exportPdf" icon="el-icon-download" style="margin-right: 20px">导出</el-button>
-    </div>-->
+    </div>
     <h3>{{m.meetingName}}</h3>
     <el-descriptions  title="" :column="2" :size="size" border>
       <el-descriptions-item>
@@ -222,12 +223,12 @@ export default {
           message: '操作成功!',
           type: 'info'
         });
-        this.getData()
       });
 
     },
-    downloadPdf(){
-    }
+    exportPdf() {
+      downloadPdf()
+    },
   }
 
 }