src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/costReimburseUtils.js
@@ -107,14 +107,19 @@ } export function statusLabel(v) { if (v === "draft") return "草稿"; if (v === "approved") return "已通过"; if (v === "paid") return "已付款"; if (v === "rejected") return "已驳回"; if (v === "cancelled") return "已撤回"; return "审核中"; } export function statusTagType(v) { if (v === "approved") return "success"; if (v === "draft") return "info"; if (v === "approved" || v === "paid") return "success"; if (v === "rejected") return "danger"; if (v === "cancelled") return "info"; return "warning"; }