This commit is contained in:
BianLzhaoMin 2025-10-13 15:10:30 +08:00
parent 4c6c8cf456
commit c1fd9d266e
2 changed files with 18 additions and 11 deletions

View File

@ -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() {

View File

@ -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)