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 size="mini" type="danger" v-if="data.checkStatus === 2">
驳回
</el-tag>
<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-popover>
</template>
</TableModel>

View File

@ -59,9 +59,17 @@
>
通过
</el-tag>
<el-tag size="mini" type="danger" v-if="data.checkStatus === 2">
驳回
</el-tag>
<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-popover>
</template>
</TableModel>

View File

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

View File

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

View File

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

View File

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

View File

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