123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- const apiurl = {
-
- wxinfo: {
- url: '/member/wechat/appletGetOpenId',
- type: 'get'
- },
-
- getMobile: {
- url: '/member/wechat/appletGetMobileV1',
- type: 'get'
- },
-
- login: {
- url: '/member/auth/appletLogin',
- type: 'post'
- },
-
- reLogin: {
- url: '/auth/login',
- type: 'post'
- },
-
- personalIndex: {
- url: '/system/client/personalIndex',
- type: 'get'
- },
-
-
-
- wxinfoH5: {
- url: '/member/wechat/h5/code/',
- type: 'get',
- addUrl: true
- },
- }
-
- const otherApiUrl = {
-
- uploadFile: '/file/upload/single/minio',
- }
- export {
- apiurl,
- otherApiUrl
- }
|