module-menu-vue 0.0.65 → 0.0.66

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "module-menu-vue",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "description": "城市大数据平台菜单--Vue版",
5
5
  "main": "/index.js",
6
6
  "scripts": {
@@ -7,7 +7,11 @@ export const getTenantList = () => {
7
7
  }
8
8
  // 更改后台租户id
9
9
  export const changeTenantId = (params) => {
10
- return request(`/admin-api/system/auth/setRedisTokenOfTenant?tenantId=${params.id}&token=${params.token}`, {
11
- method: 'get'
10
+ return request(`/admin-api/system/auth/setRedisTokenOfTenant`, {
11
+ method: 'post',
12
+ data: {
13
+ tenantId: params.id,
14
+ token: params.token
15
+ }
12
16
  })
13
17
  }