|
@@ -2,7 +2,11 @@
|
|
|
<div class="app-container">
|
|
|
<div style="display: flex;justify-content: space-between;margin-bottom: 8px">
|
|
|
<div style="font-size: 24px">{{ m.meetingName }}</div>
|
|
|
- <el-button size="mini" @click="exportPdf" icon="el-icon-download" style="margin-right: 20px">导出</el-button>
|
|
|
+ <div>
|
|
|
+ <el-button size="mini" type="primary" @click="meetingResultConfirm">会议结果确认</el-button>
|
|
|
+ <el-button size="mini" @click="exportPdf" >导出</el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
</div>
|
|
|
<el-descriptions title="" :column="2" :size="size" border>
|
|
|
<el-descriptions-item>
|
|
@@ -309,6 +313,9 @@ export default {
|
|
|
exportPdf() {
|
|
|
downloadPdf(this.meetingId, this.weeks)
|
|
|
},
|
|
|
+ meetingResultConfirm(){
|
|
|
+ alert('你点击了会议结果确认!')
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|