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
|
@@ -32,15 +32,14 @@ export class KissApi {
|
|
|
32
32
|
获取服务器地址 需要在storage中设置 key=host的value
|
|
33
33
|
*/
|
|
34
34
|
GetHost () {
|
|
35
|
-
return
|
|
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
|
|
42
|
+
return getToken()
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
/*
|