@smart100/spu-web-plugin 0.0.33 → 0.0.35
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/dist/index.d.ts +3 -2
- package/dist/spu-web-plugin.mjs +1237 -1113
- package/package.json +1 -1
- package/src/axios.ts +17 -2
- package/src/index.ts +12 -11
- package/src/location.ts +1 -1
- package/src/login.ts +83 -22
- package/src/types/index.d.ts +3 -2
- package/src/utils.ts +20 -3
package/dist/index.d.ts
CHANGED
|
@@ -83,14 +83,15 @@ export const getUniqueid: () => string
|
|
|
83
83
|
export const getUuid: () => string
|
|
84
84
|
export const functionCheck: (functioncode?: string) => boolean
|
|
85
85
|
export const setTitle: (pagetitle?: string) => void
|
|
86
|
+
export const isInApp: () => boolean
|
|
86
87
|
export const AMapLoader: IAMapLoader
|
|
88
|
+
export const singleLogin: any
|
|
89
|
+
export const updateToken: () => Promise<void>
|
|
87
90
|
export const getToken: () => string
|
|
88
91
|
export const getTokenExpires: () => string
|
|
89
92
|
export const getRefreshToken: () => string
|
|
90
93
|
export const getUser: (key?: string) => any
|
|
91
94
|
export const checkLogin: () => boolean
|
|
92
|
-
export const singleLogin: any
|
|
93
|
-
export const startRefreshtoken: any
|
|
94
95
|
export const Module: any
|
|
95
96
|
export const components: any
|
|
96
97
|
export const expandexp: (options: any) => void
|