diff --git a/app/api/property.js b/app/api/property.js index fc0f7af..e9bb4e0 100644 --- a/app/api/property.js +++ b/app/api/property.js @@ -181,6 +181,33 @@ export function cancelBill(id) { ); } +// 审核单据通过 +export function auditBill(id) { + return request.get( + `autogencode/ckbill/auditBill/${id}`, + {}, + { useAdminUrl: true } + ); +} + +// 驳回单据 +export function rejectBill(id) { + return request.get( + `autogencode/ckbill/rejectBill/${id}`, + {}, + { useAdminUrl: true } + ); +} + +// 撤销审核 +export function cancelAuditBill(id) { + return request.get( + `autogencode/ckbill/cancelAuditBill/${id}`, + {}, + { useAdminUrl: true } + ); +} + // 部门树 export function getDeptTree() { return request.get( diff --git a/app/pages/supply_chain/complaint/HandlePopup.vue b/app/pages/supply_chain/complaint/HandlePopup.vue index 20bbd9e..95f0c67 100644 --- a/app/pages/supply_chain/complaint/HandlePopup.vue +++ b/app/pages/supply_chain/complaint/HandlePopup.vue @@ -20,7 +20,7 @@ - 反馈图片 + 处理图片 + + 领用审核 + - + - 领用物资 @@ -175,7 +171,14 @@ - + + + 审核通过 + 驳回 + 撤销审核 + + + 取消单据 查看凭证 @@ -210,11 +213,13 @@