index.js 622 Bytes
// 基础模块
import base from "./base";
// 用户状态
import author from "./author";
// 报表api
import bi from "./bi";
// 收费查询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,
  ...bi,
  ...chargeQuery,
  ...customer,
  ...info,
  ...preAuth,
  ...verification,
  ...welfare,
};
export default funcs;