Commit cb46ce6765c3628427b6fad4b3cb73c30d40bf18

Authored by 徐欣
1 parent 6d5daeef

feat(approval): 流程配置门店交互 bug 修复

Showing 1 changed file with 10 additions and 0 deletions
src/common/api.ts
... ... @@ -213,6 +213,16 @@ export function queryShopBizType(): http.PromiseResp<CommonApi.ShopRpTypeVO[]> {
213 213 return request.get(`${OOP_HOST}/select/shopBizType`);
214 214 }
215 215  
  216 +export interface GetReimburseRpTypesReq {
  217 + businessTypes?: string
  218 +}
  219 +/**
  220 + * 报销款项列表
  221 + */
  222 +export function getReimburseRpTypes(params: GetReimburseRpTypesReq): http.PromiseResp<CommonApi.RPTypeVO[]> {
  223 + return request.get(`${FINANCE2_HOST}/common/reimburseRpTypes`, { params });
  224 +}
  225 +
216 226 /**
217 227 * 批量获取角色所在角色组信息
218 228 * @param params 角色编码,多个角色英文逗号分割
... ...