huminmin
2026-06-12 a32e60bf3366bf3b2d8d0d53b8257290acfb3d4e
src/api/officeProcessAutomation/approvalTemplate.js
@@ -1,13 +1,8 @@
import request from "@/utils/request";
/** 模板类型:1 系统内置,2 自定义 */
export const TEMPLATE_TYPE_BUILTIN = 1;
export const TEMPLATE_TYPE_CUSTOM = 2;
export const TEMPLATE_TYPE_OPTIONS = [
  { value: TEMPLATE_TYPE_BUILTIN, label: "系统内置" },
  { value: TEMPLATE_TYPE_CUSTOM, label: "自定义" },
];
/** 模板类型:0 系统内置,1 自定义(与后端 templateType 一致) */
export const TEMPLATE_TYPE_BUILTIN = 0;
export const TEMPLATE_TYPE_CUSTOM = 1;
/** 查询所有审批模板 */
export function listApprovalTemplate(type) {