You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.3 KiB
106 lines
2.3 KiB
<template> |
|
<scroll-view class="scv" scroll-y="true" @scrolltolower="jiazai" @scrolltoupper="init"> |
|
<view class="max-box"> |
|
<view v-if="list.length>0" v-for="item in list"> |
|
<image :src="item.thumbnail"></image> |
|
<view>{{item.collName}}</view> |
|
<view @click="gocomposedetails(item)">合成</view> |
|
</view> |
|
<view style="color: #fff;text-align: center;margin: auto;" v-if="list.length==0">暂无合成活动</view> |
|
</view> |
|
</scroll-view> |
|
<!-- <view style="color: #ffffff;font-size: 50rpx;text-align: center;padding-top: 20rpx;">暂未开放</view> --> |
|
</template> |
|
|
|
<script> |
|
import {ref} from 'vue' |
|
import {compoundlist} from '@/api/user.js' |
|
export default { |
|
setup() { |
|
let list=ref([]) |
|
let pageNum=1 |
|
function init(){ |
|
pageNum=1 |
|
compoundlist({pageNum,pageSize:10}).then(res=>{ |
|
console.log(res); |
|
list.value=res.rows |
|
list.value.map(item=>{ |
|
uni.removeStorageSync(item.id) |
|
}) |
|
}) |
|
} |
|
init() |
|
function jiazai(){ |
|
pageNum++ |
|
compoundlist({pageNum,pageSize:10}).then(res=>{ |
|
console.log(res); |
|
if(res.rows.length==0){ |
|
pageNum-- |
|
} |
|
res.rows.map(item=>{ |
|
list.value.push(item) |
|
}) |
|
list.value.map(item=>{ |
|
uni.removeStorageSync(item.id) |
|
}) |
|
}) |
|
} |
|
function gocomposedetails(item){ |
|
uni.navigateTo({ |
|
url:'/pages/composedetails/composedetails?id='+item.id |
|
}) |
|
} |
|
return { |
|
list, |
|
gocomposedetails, |
|
init, |
|
jiazai |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.scv{ |
|
width: 100%; |
|
height: 94vh; |
|
padding: 10upx 32upx; |
|
box-sizing: border-box; |
|
} |
|
.max-box{ |
|
display: flex; |
|
align-items: center; |
|
flex-wrap: wrap; |
|
justify-content: space-between; |
|
>view{ |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
>image{ |
|
width: 318upx; |
|
height: 342upx; |
|
border-radius: 26upx; |
|
} |
|
>view:nth-of-type(1){ |
|
margin-top: 42upx; |
|
margin-bottom: 26upx; |
|
font-size: 28upx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
} |
|
>view:nth-of-type(2){ |
|
width: 188upx; |
|
height: 60upx; |
|
background: linear-gradient(351deg, #9735DC 0%, #570CDC 100%); |
|
border-radius: 44upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 28upx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
margin-bottom: 30upx; |
|
} |
|
} |
|
} |
|
</style>
|
|
|