- 调整API域名配置,区分h5和小程序环境 - 重构OrderCost组件,支持多种费用类型筛选和展示 - 优化OrderVehicle组件,简化经销商信息赋值逻辑 - Weigh组件新增西瓜品种选择功能,包含弹窗和校验逻辑 - 重写LaborInfoSection组件,支持新增和编辑人工费用项 - 改进费用承担方和工头信息的处理流程 - 优化UI布局和交互体验
30 lines
944 B
TypeScript
30 lines
944 B
TypeScript
//@ts-nocheck
|
|
import path from "path";
|
|
|
|
export default [
|
|
{
|
|
requestLibPath: "import request from '../request';",
|
|
// schemaPath: 'http://localhost:8080/auth/v3/api-docs',
|
|
schemaPath: path.resolve(__dirname, "../../swagger/auth.json"),
|
|
serversPath: "./src/services",
|
|
projectName: "auth",
|
|
namespace: "AuthAPI",
|
|
},
|
|
{
|
|
requestLibPath: "import request from '../request';",
|
|
// schemaPath: 'http://localhost:8080/mdb-business/v3/api-docs',
|
|
schemaPath: path.resolve(__dirname, "../../swagger/business.json"),
|
|
serversPath: "./src/services",
|
|
projectName: "business",
|
|
namespace: "BusinessAPI",
|
|
},
|
|
{
|
|
requestLibPath: "import request from '../poster-request';",
|
|
// schemaPath: 'http://localhost:8080/mdb-business/v3/api-docs',
|
|
schemaPath: path.resolve(__dirname, "../../swagger/poster.json"),
|
|
serversPath: "./src/services",
|
|
projectName: "poster",
|
|
namespace: "PosterAPI",
|
|
},
|
|
];
|