diff --git a/src/pages/policyRegulation/meeting/index.vue b/src/pages/policyRegulation/meeting/index.vue index 964985aa5..9b3209695 100644 --- a/src/pages/policyRegulation/meeting/index.vue +++ b/src/pages/policyRegulation/meeting/index.vue @@ -258,12 +258,10 @@ export default { this.$refs.exportDialogRef.openModel() }, handleExport (exportName) { - alert('导出' + exportName) const params = { - ...this.form, + ...this.searchForm, exportName: exportName, - userId: this.$store.getters.userInfo.userId, - exportIds: this.ids.join(',') + exportIds: this.selectedList.join(',') } let query = '?' for(let i in params){ @@ -272,23 +270,18 @@ export default { } } query = query.slice(0,-1) - window.open('/api/esRevisePlan/es-revise-plan/exportEsRevisePlanInfoExcel' + query) + window.open('/api/lawss/insideOutsideMeeting/exportMeetingInfo' + query) this.$refs.exportDialogRef.cancel() - this.$message({ - message: '导出信息成功', - type: 'success' - }) + this.$message.success('导出信息成功') }, // 导入 addImportModal() { - alert('导入') this.importModalShowFlag = true - this.importExcelUrl = '/api/lawss/sarBussionessStand/importSarBussionessStandFile?'+ 'userId=' + this.$store.getters.userInfo.userId + this.importExcelUrl = '/api/lawss/insideOutsideMeeting/importMeetingInfo' }, // 模板下载 handleMoudel(){ - alert('模板下载') - window.open('/api/lawss/sarBussionessStand/exportTemplateFile?fileName=企业标准导入模板') + window.open('/api/lawss/insideOutsideMeeting/exportTemplateFile?fileName=内外部会议导入模板') }, // 新增编辑 openDrawer (type, row) {