// 基础模块
import base from "./base";
// 用户状态
import author from "./author";
// 报表api
import report from "./report";
// 收费查询api
import chargeQuery from "./charge-query";
// 客户管理api
import customer from "./customer";
// 信息维护api
import info from "./info";
// 预授权管理api
import preAuth from "./pre-auth";
// 核销管理api
import verification from "./verification";
// 福利管理api
import welfare from "./welfare";
const funcs = {
...base,
...author,
...report,
...chargeQuery,
...customer,
...info,
...preAuth,
...verification,
...welfare,
};
export default funcs;
-
郭小龙-DEL authored
add 回款详情添加上传文件功能 fix 赔付金额填写逻辑
4f31a2ff