Appearance
应用列表模块
集成和使用ESAppModule
模块。
ESAppManager
是对ESAppModule
进一步封装。- 开发者可以直接使用
ESAppModule
。建议直接使用ESAppManager
。
集成
package.json
引入库
点击查看源码
js
"@extscreen/es-core": "^x.x.x"
获取系统应用列表
示例代码
点击查看源码
js
ESAppManager.getAppList()
.then(
(appList) => {
let systemAppList = appList.system
},
//
error => {
})
获取用户应用列表
示例代码
点击查看源码
js
ESAppManager.getAppList()
.then(
(appList) => {
let userAppList = appList.user
},
//
error => {
})