123456789101112131415161718192021222324 |
- /*
- 接口统一管理
- */
- const apiurl = {
- /** 案例 */
- case: {
- url: '/member/wechat/appletGetOpenId',
- type: 'get'
- }
- }
- /*
- * 特殊处理接口
- */
- const otherApiUrl = {
- // 文件上传
- uploadFile: '/file/upload/single/minio',
- }
- export {
- apiurl,
- otherApiUrl
- }
|