index.js 618 Bytes
// 基础
import base from "./base";
// 用户状态api
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 apis = {
  ...base,
  ...author,
  ...bi,
  ...chargeQuery,
  ...customer,
  ...info,
  ...preAuth,
  ...verification,
  ...welfare,
};
export default apis;