This commit is contained in:
BianLzhaoMin 2025-10-23 16:34:30 +08:00
parent 5926e462c7
commit c6d82414e4
7 changed files with 31 additions and 11 deletions

View File

@ -82,9 +82,18 @@
> >
通过 通过
</el-tag> </el-tag>
<el-tag size="mini" type="danger" v-if="data.checkStatus === 2">
<el-popover
v-if="data.checkStatus === 2"
placement="top"
width="200"
trigger="click"
:content="data.refuseRemark || '无'"
>
<el-tag slot="reference" size="mini" type="danger">
驳回 驳回
</el-tag> </el-tag>
</el-popover>
</template> </template>
</TableModel> </TableModel>

View File

@ -59,9 +59,17 @@
> >
通过 通过
</el-tag> </el-tag>
<el-tag size="mini" type="danger" v-if="data.checkStatus === 2"> <el-popover
v-if="data.checkStatus === 2"
placement="top"
width="200"
trigger="click"
:content="data.refuseRemark || '无'"
>
<el-tag slot="reference" size="mini" type="danger">
驳回 驳回
</el-tag> </el-tag>
</el-popover>
</template> </template>
</TableModel> </TableModel>

View File

@ -185,6 +185,7 @@ export default {
workerId: { workerId: {
handler(newVal) { handler(newVal) {
if (newVal) { if (newVal) {
this.attInfoQueryParams.workerId = newVal
this.getAttInfoData() this.getAttInfoData()
} }
}, },
@ -231,6 +232,7 @@ export default {
workerId: this.workerId, workerId: this.workerId,
subId: this.subId, subId: this.subId,
proId: this.proId, proId: this.proId,
...this.attInfoQueryParams,
}, },
'考勤信息.xlsx', '考勤信息.xlsx',
) )

View File

@ -119,6 +119,7 @@ export default {
workerId: { workerId: {
handler(newVal) { handler(newVal) {
if (newVal) { if (newVal) {
this.wageInfoQueryParams.workerId = newVal
this.getWageInfoData() this.getWageInfoData()
} }
}, },

View File

@ -737,7 +737,7 @@ export default {
this.download( this.download(
'/bmw/proStatistics/exportProInOutMsg', '/bmw/proStatistics/exportProInOutMsg',
{ {
// ...queryParams, ...queryParams,
proId: this.proId, proId: this.proId,
}, },
'人员出入场信息.xlsx', '人员出入场信息.xlsx',
@ -750,7 +750,7 @@ export default {
'/bmw/proStatistics/exportProAttMsg', '/bmw/proStatistics/exportProAttMsg',
// { ...queryParams }, // { ...queryParams },
{ {
// ...queryParams, ...queryParams,
proId: this.proId, proId: this.proId,
}, },
'人员考勤信息列表.xlsx', '人员考勤信息列表.xlsx',

View File

@ -140,7 +140,7 @@ export default {
this.download( this.download(
'/bmw/proStatistics/exportProStatisticsTable', '/bmw/proStatistics/exportProStatisticsTable',
{ {
// ...queryParams, ...queryParams,
}, },
'工程统计.xlsx', '工程统计.xlsx',
) )

View File

@ -522,7 +522,7 @@ export default {
onHandleExportEntryExitInfo(queryParams) { onHandleExportEntryExitInfo(queryParams) {
this.download( this.download(
'/bmw/subStatistics/exportSubInOutMsg', '/bmw/subStatistics/exportSubInOutMsg',
{ subId: this.subId }, { subId: this.subId, ...queryParams },
'人员出场信息列表.xlsx', '人员出场信息列表.xlsx',
) )
}, },
@ -531,7 +531,7 @@ export default {
onHandleExportAttendanceInfo(queryParams) { onHandleExportAttendanceInfo(queryParams) {
this.download( this.download(
'/bmw/subStatistics/exportSubAttMsg', '/bmw/subStatistics/exportSubAttMsg',
{ subId: this.subId }, { subId: this.subId, ...queryParams },
'人员考勤信息列表.xlsx', '人员考勤信息列表.xlsx',
) )
}, },