openatc-components 0.1.137 → 0.1.138

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": "openatc-components",
3
- "version": "0.1.137",
3
+ "version": "0.1.138",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -32,15 +32,14 @@ export class KissApi {
32
32
  获取服务器地址 需要在storage中设置 key=host的value
33
33
  */
34
34
  GetHost () {
35
- return getToken()
36
- // return localStorge.getStorage('host')
35
+ return localStorge.getStorage('host')
37
36
  }
38
37
 
39
38
  /*
40
39
  获取token 需要在storage中设置 key=token的value
41
40
  */
42
41
  GetToken () {
43
- return localStorge.getStorage('token')
42
+ return getToken()
44
43
  }
45
44
 
46
45
  /*