@ -119,20 +119,13 @@
});
}
},
// 跳转图片详情页
// 跳转banner详情页
linkTo(item) {
console.log(item)
if (item.id) {
uni.setStorage({
key: 'detailId',
data: item.id,
success() {
console.log(111111)
uni.navigateTo({
url: '../creator/imgDetail'
})
url: 'pages/index'
@ -160,7 +153,6 @@
if (res.data.code === 200) {
this.creatorImgList.push(...res.data.rows)
console.log('creatorImgList', this.creatorImgList)
} else {
uni.showModal({
content: '用户图片列表加载失败!',
@ -38,9 +38,6 @@
onLoad() {
this.getImgList();
// 下拉刷新
onPullDownRefresh() {
//TODO 此處待優化
@ -52,7 +49,6 @@
// 上划加载更多
onReachBottom() {
console.log(2222)
if (this.imgList.length > 3) {
this.pageNum += 1
this.getImgList()
@ -67,10 +63,7 @@
pageSize: this.pageSize
console.log('res',res)
for (let i = 0; i < res.data.rows.length; i++) {
this.imgList = res.data.rows
this.imgList.push(...res.data.rows)
uni.showToast({
title: res.data.msg,