Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
90cdef7e
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
90cdef7e
编写于
8月 21, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
long-list: 更新API地址
上级
9f81e82c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
35 addition
and
37 deletion
+35
-37
pages/template/long-list/long-list.uvue
pages/template/long-list/long-list.uvue
+35
-37
未找到文件。
pages/template/long-list/long-list.uvue
浏览文件 @
90cdef7e
...
...
@@ -2,23 +2,23 @@
<list-view class="list" @scrolltolower="loadData">
<list-item class="list-item" v-for="(item, index) in dataList" :key="index">
<view class="list-item-icon">
<image class="list-item-icon-image" :src="item.
img
"></image>
<image class="list-item-icon-image" :src="item.
author_avatar_link
"></image>
</view>
<view class="list-item-fill">
<view class="flex-row">
<text class="title">{{item.name}}</text>
<text class="title">{{item.
plugin_
name}}</text>
</view>
<view class="description">
<text class="description-text">{{item.intro}}</text>
<text class="description-text">{{item.plugin_intro}}</text>
</view>
<view class="tag-list">
<text class="tag-item" v-for="(item2, index2) in item.tags" :key="index2">{{item2}}</text>
</view>
<!-- <view class="tag-list">
<text class="tag-item" v-for="(item2, index2) in item.tags" :key="index2">{{item2.name}}</text>
</view> -->
<!-- <uts-rate></uts-rate> -->
<view class="flex-row update-date">
<text class="update-date-text">更新日期</text>
<
!-- <text class="update-date-value">{{item.updateDate}}</text> --
>
<
!-- <text class="author">Dcloud</text> --
>
<
text class="update-date-value">{{item.update_date}}</text
>
<
text class="author">{{item.author_name}}</text
>
</view>
</view>
</list-item>
...
...
@@ -26,18 +26,22 @@
</template>
<script>
// TODO 临时地址
const SERVER_URL = "https://test-ext.dcloud.net.cn/plugin/plugin-list"
const SERVER_URL = "https://ext.dcloud.net.cn/plugin/uniappx-plugin-list"
const PAGE_SIZE = 10; // 最大值 10
// TODO 暂不支持tag,更新日期等属性
type ListItem = {
id : number,
img : string,
name : string,
intro : string,
// tags : Array<String>,
// updateDate : string,
plugin_id : number,
author_avatar_link : string,
plugin_name : string,
plugin_intro : string,
tags : Array<string>,
update_date : string,
author_name : string,
}
type ResponseDataType = {
code : number,
data : ListItem[]
}
export default {
...
...
@@ -60,29 +64,23 @@
this.loading = true;
// TODO request data 没有拼接到 url 中,暂时手动拼接
uni.request({
url:
SERVER_URL
,
url:
`${SERVER_URL}?page=${this.$currentPage}&page_size=${PAGE_SIZE}`
,
data: {
page: this.$currentPage,
page
S
ize: PAGE_SIZE
page
_s
ize: PAGE_SIZE
},
dataType: '',
success: (res) => {
const responseData = res.data as UTSJSONObject
if (responseData['data'] == null) {
return;
}
const responseDataList = responseData['data'] as UTSJSONObject[]
for (const item in responseDataList) {
this.dataList.push({
id: item["id"] as number,
img: 'https:' + item["img"] as string,
name: item["name"] as string,
intro: item["intro"] as string,
} as ListItem)
}
this.isEnded = responseDataList.length <= 0;
const responseData = JSON.parse<ResponseDataType>(res.data as string)!
const list = responseData.data
list.forEach((item) => {
this.dataList.push(item)
})
this.isEnded = list.length <= 0;
this.$currentPage++
},
...
...
@@ -141,7 +139,7 @@
}
.description {
margin-top:
5
px;
margin-top:
3
px;
}
.description-text {
...
...
@@ -182,7 +180,7 @@
.author {
font-size: 12px;
color: #00
8
000;
color: #00
5
000;
margin-left: auto;
}
</style>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录