|
@@ -25,6 +25,10 @@ class WaterfallIndexScene extends scene {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ loadDownloadList() {
|
|
|
+ APIClient.getDownloadList( ( isTrue,res) => {})
|
|
|
+ }
|
|
|
+
|
|
|
renderRecommendList(dataset) {
|
|
|
let list = document.getElementById('recommend');
|
|
|
list.innerHTML = '';
|
|
@@ -275,6 +279,8 @@ class WaterfallIndexScene extends scene {
|
|
|
if (res.success) {
|
|
|
// 保存终端信息
|
|
|
userDataStorage.setData(res.data);
|
|
|
+ //获取下载失败列表
|
|
|
+ this.loadDownloadList();
|
|
|
// 渲染数字时钟
|
|
|
this.renderDigitalClock();
|
|
|
// 请求推荐列表
|