123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import client from "./client";
- import user from "./user";
- import admin from "./admin";
- import permission from "./permission";
- // 新系统新接口文件
- import event from "./newApi/event";
- import product from "./newApi/product";
- import framework from "./newApi/framework";
- import file from "./newApi/file"
- import project from "./newApi/project"
- import common from "./newApi/common"
- import newReport from "./newApi/report"
- import patentMining from "./newApi/patentMining"
- import task2 from "./newApi/task"
- import importAndExport from './newApi/importAndExport'
- import patent from './newApi/patent'
- import custom from "./newApi/custom";
- import otherPatentInformation from "./newApi/otherPatentInformation";
- import translate from "./newApi/translate";
- import noveltySearch from "./newApi/noveltySearch";
- import IPREmail from "./newApi/IPREmail";
- export default {
- ...client,
- ...user,
- ...admin,
- ...permission,
- ...event,
- ...product,
- ...framework,
- ...file,
- ...project,
- ...common,
- ...newReport,
- ...patentMining,
- ...task2,
- ...importAndExport,
- ...patent,
- ...custom,
- ...otherPatentInformation,
- ...translate,
- ...noveltySearch,
- ...IPREmail
- }
|