apifm-webapi 25.12.17 → 25.12.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -310,7 +310,7 @@ module.exports = {
310
310
  })
311
311
  },
312
312
  login_tt: (code) => {
313
- return request('/user/tt/microapp/login', true, 'post', {
313
+ return request(COMMON_BASE_URL + subDomain + '/user/tt/miniapp/login', false, 'post', {
314
314
  code
315
315
  })
316
316
  },
@@ -1461,7 +1461,7 @@ module.exports = {
1461
1461
  return request('/user/delete', true, 'post', { token })
1462
1462
  },
1463
1463
  dynamicUserCode: (token) => {
1464
- return request('/user/dynamicUserCode', true, 'get', { token })
1464
+ return request(COMMON_BASE_URL + subDomain + '/user/dynamicUserCode', false, 'get', { token })
1465
1465
  },
1466
1466
  userLevelList: (data) => {
1467
1467
  return request('/user/level/list', true, 'post', data)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.12.17",
3
+ "version": "25.12.18",
4
4
  "description": "接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {