|
|
@@ -81,8 +81,9 @@
|
|
|
@confirm="handleDelete(scope.row.id)"
|
|
|
/>
|
|
|
<ActionButton
|
|
|
- text="确认领取"
|
|
|
- :popconfirm="{ title: '确定要确认领取?' }"
|
|
|
+ text="确认发放"
|
|
|
+ v-if="scope.row.conformClaimButton"
|
|
|
+ :popconfirm="{ title: '确定要发放吗?' }"
|
|
|
@confirm="handleConfirm(scope.row.id)"
|
|
|
/>
|
|
|
<ActionButton text="查看" @click="handleView(scope.row.id)" />
|
|
|
@@ -203,6 +204,7 @@
|
|
|
department: item.deptName, // 部门
|
|
|
recipient: item.userName, // 领取人
|
|
|
status: item.status, // 0 待审核 1 审核通过 -1 审核不通过 2 已领取
|
|
|
+ conformClaimButton: item.conformClaimButton, // 确认发放按钮
|
|
|
}));
|
|
|
pagination.total = res.totalRow;
|
|
|
}
|