Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
cb3411c9
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6084
Star
96
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cb3411c9
编写于
8月 26, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
long-list: 提前请求网络数据
上级
fe2bcdb6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
12 deletion
+16
-12
pages/template/long-list/long-list-page.uvue
pages/template/long-list/long-list-page.uvue
+9
-6
pages/template/long-list/long-list.uvue
pages/template/long-list/long-list.uvue
+7
-6
未找到文件。
pages/template/long-list/long-list-page.uvue
浏览文件 @
cb3411c9
...
...
@@ -56,6 +56,10 @@
type: {
type: String,
default: ''
},
preload: {
type: Boolean,
default: false
}
},
data() {
...
...
@@ -80,19 +84,18 @@
}
}
},
moun
ted() {
crea
ted() {
uni.loadFontFace({
global: false,
family: 'UtsIconsFontFamily',
source: '/static/fonts/icon-star.ttf'
})
if (this.preload) {
this.loadData()
}
},
methods: {
init() {
if (this.dataList.length == 0) {
this.loadData()
}
},
loadData() {
if (this.loading || this.isEnded) {
return
...
...
pages/template/long-list/long-list.uvue
浏览文件 @
cb3411c9
...
...
@@ -22,7 +22,7 @@
<swiper class="swiper-view" ref="swiper" :current="swiperIndex" @change="onSwiperChange"
@transition="onSwiperTransition" @animationfinish="onSwiperAnimationfinish">
<swiper-item class="swiper-item" v-for="(item, index) in swiperList" :key="index">
<long-page ref="longPage" :type="item.type"></long-page>
<long-page ref="longPage" :type="item.type"
:preload="item.preload"
></long-page>
</swiper-item>
</swiper>
</view>
...
...
@@ -40,7 +40,7 @@
type SwiperViewItem = {
type : string,
name : string,
init
: Boolean,
preload
: Boolean,
}
export default {
...
...
@@ -53,7 +53,8 @@
swiperList: [
{
type: 'UpdatedDate',
name: '最新上架'
name: '最新上架',
preload: true
} as SwiperViewItem,
{
type: 'FreeHot',
...
...
@@ -139,9 +140,9 @@
}
},
initSwiperItemPage(index : Number) {
if (!this.swiperList[index].
init
) {
this.swiperList[index].
init
= true;
(this.$refs["longPage"] as ComponentPublicInstance[])[index].$callMethod('
init
')
if (!this.swiperList[index].
preload
) {
this.swiperList[index].
preload
= true;
(this.$refs["longPage"] as ComponentPublicInstance[])[index].$callMethod('
loadData
')
}
},
updateTabIndicator(left : Number, width : Number) {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录