修复bug

This commit is contained in:
liangbin 2026-02-28 10:38:27 +08:00
parent 921a9052a8
commit eeca4ce4f7
1 changed files with 3 additions and 21 deletions

View File

@ -27,27 +27,9 @@
<el-table-column prop="projectName" label="项目名称"></el-table-column>
<el-table-column prop="constructionUnit" label="施工单位"></el-table-column>
<el-table-column prop="workLocation" label="作业地点"></el-table-column>
<el-table-column prop="supervisorReviewStatus" label="监理复核状态">
<template #default="scope">
<el-tag :type="scope.row.supervisorReviewStatus == '已完成' ? 'success' : 'warning'">
{{ scope.row.supervisorReviewStatus }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="ballheadStatus" label="球机状态">
<template #default="scope">
<el-tag :type="scope.row.ballheadStatus == '已入库' ? 'success' : 'warning'">
{{ scope.row.ballheadStatus }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="reviewStatus" label="复核状态">
<template #default="scope">
<el-tag :type="scope.row.reviewStatus == '已完成复核' ? 'success' : 'warning'">
{{ scope.row.reviewStatus }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="supervisionReviewStatus" label="监理复核状态"></el-table-column>
<el-table-column prop="finalAuditStatus" label="球机状态"></el-table-column>
<el-table-column prop="onSiteReviewStatus" label="复核状态"></el-table-column>
<el-table-column label="操作" width="260">
<template #default="scope">
<el-button size="small" type="primary" link @click="handleReview(scope.row)">现场复核施工结果</el-button>