From d686aaefcd476ceccc5a104ac0e51b1b3da93460 Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Fri, 8 Oct 2021 14:19:07 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"=E8=B5=84=E6=96=99=E7=BB=B4=E6=8A=A4?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E4=BF=AE=E6=94=B9=EF=BC=8C=E6=94=AF=E5=87=BA?= =?UTF-8?q?=E5=90=88=E5=90=8C=E5=8D=95=E4=BD=8D=E3=80=81=E8=81=94=E7=B3=BB?= =?UTF-8?q?=E4=BA=BA=E6=94=B9=E4=B8=BAinput"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 7ab837f86f26ab72177b2e61df454034263a2629. --- .../WorkingGroupProjectDataMaintenance.vue | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue b/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue index a94dd19..ed842e0 100644 --- a/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue +++ b/src/views/projectManagement/WorkingGroupProjectDataMaintenance.vue @@ -87,7 +87,6 @@ import { JeroListMixin } from '../../mixins/JeroListMixin' import PageHeaderTitle from '../../components/layouts/PageHeaderTitle' import WorkGroupFileUploadModal from './modules/WorkGroupFileUploadModal' import WorkGroupDistributeModule from './modules/WorkGroupDistributeModule' -import { downloadFile } from '../../api/manage' export default { name: 'WorkingGroupProjectDataMaintenance', @@ -196,18 +195,7 @@ export default { this.dataId = id this.distributeModalVisible = true this.isBatchDistribute = false - }, - handleExportXls(fileName) { - if (!fileName || typeof fileName != 'string') { - fileName = '导出文件' - } - let param = this.getQueryParams() - if (this.selectedRowKeys && this.selectedRowKeys.length > 0) { - param['selections'] = this.selectedRowKeys.join(',') - } - console.log('导出参数', param) - downloadFile(this.url.exportXlsUrl, fileName + '.zip', param) - }, + } } }