From c1fd9d266e46101ac30e590f116dc53026120112 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Mon, 13 Oct 2025 15:10:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail/components/personInfo-card.vue | 27 ++++++++++++------- .../detail/components/three-one-table.vue | 2 +- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/src/views/synthesize-query/project-count/detail/components/personInfo-card.vue b/src/views/synthesize-query/project-count/detail/components/personInfo-card.vue index 37e85ae..5b28f9f 100644 --- a/src/views/synthesize-query/project-count/detail/components/personInfo-card.vue +++ b/src/views/synthesize-query/project-count/detail/components/personInfo-card.vue @@ -508,20 +508,27 @@ export default { // 导出 onHandleExportEntryExitInfo(queryParams) { - // this.download( - // '/bmw/workerLight/attExportByWorker', - // { ...queryParams }, - // '人员出场信息列表.xlsx', - // ) + this.download( + '/bmw/proStatistics/exportProInOutMsg', + { + // ...queryParams, + proId: this.proId, + }, + '人员出入场信息.xlsx', + ) }, // 导出 onHandleExportAttendanceInfo(queryParams) { - // this.download( - // '/bmw/workerLight/attExportByWorker', - // { ...queryParams }, - // '人员考勤信息列表.xlsx', - // ) + this.download( + '/bmw/workerLight/attExportByWorker', + // { ...queryParams }, + { + // ...queryParams, + proId: this.proId, + }, + '人员考勤信息列表.xlsx', + ) }, // 查看更多 handleViewEntryExitInfo() { diff --git a/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue b/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue index 3671d51..69332b1 100644 --- a/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue +++ b/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue @@ -344,7 +344,7 @@ export default { async onHandleUpdateData(row) { const res = await updateThreeAndOneMonthlyWagePaymentAPI({ proId: this.projectId, - month: row.tableMonth, + tableMonth: row.tableMonth, }) console.log('res更新结果', res)