UNPKG
@tslsmart/magic-applet
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
特斯联移动端统一接口,抹平h5和wgt的差异
@tslsmart/magic-applet
/
src
/
common
/
params.ts
12 lines
(9 loc)
•
272 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
PARAMS_LOCAL_KEY
}
from
'../constant'
// 获取完整的启动参数
export
const
getParams
= (
) => {
return
uni.
getStorageSync
(
PARAMS_LOCAL_KEY
) }
// 获取指定key的启动参数
export
const
getParamsByKey
= (
key
:
string
) => {
return
getParams
()[key] }