Commit 8fa5f746 by jiang'yun
parents f5a53335 0e72c156
......@@ -71,6 +71,7 @@
<div
style="display:flex; align-items:center; justify-content: space-between; margin-bottom: 12px;">
<div style="font-weight: 600;">纪要</div>
<el-button type="primary" size="small" icon="el-icon-download" @click="handleExportHyjy">导出</el-button>
</div>
<div class="summary" v-html="detail.hyjy"></div>
</el-card>
......@@ -327,7 +328,17 @@ export default {
this.$message.warning('缺少会议ID')
return
}
download('hyjyxx/hyjyxx/exportWord_YY', { id: this.id }, `会议转录文本_${this.detail.ypwjName || this.id}_${new Date().getTime()}.docx`)
download('hyjyxx/hyjyxx/exportWord_YY', { id: this.id }, `${this.detail.hymc+'转录文本'}.docx`)
},
/**
* 导出Word(转录文本)
*/
handleExportHyjy() {
if (!this.id) {
this.$message.warning('缺少会议ID')
return
}
download('/hyjyxx/hyjyxx/exportWord_JY', { id: this.id }, `${this.detail.hymc +'会议纪要'}.docx`)
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment