From 84c61d92e2048143b80d318d679198b605c74ad2 Mon Sep 17 00:00:00 2001 From: wx-jincw Date: Sun, 10 May 2026 16:16:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=89=A9=E8=B5=84=E9=A2=86=E7=94=A8?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/property.js | 27 ++++ .../supply_chain/complaint/HandlePopup.vue | 4 +- .../supply_chain/material_receipt/index.vue | 144 +++++++++++++++--- 3 files changed, 153 insertions(+), 22 deletions(-) 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 @@