Files
dvcp_v2_wechat_app/src/project/fengdu/AppNewFarmerBank/handpick.vue

155 lines
4.1 KiB
Vue
Raw Normal View History

2023-04-03 17:03:43 +08:00
<template>
<div class="handpick">
2023-04-06 10:56:30 +08:00
<div class="list" v-for="(item,index) in list" :key="index">
2023-04-03 17:47:57 +08:00
<div class="top">
2023-04-06 15:05:00 +08:00
<div class="left" @click="$linkTo(`./pickDetail?id=${item.id}`)">
{{ item.content }}
</div>
2023-04-06 10:56:30 +08:00
<div class="right" @click="upCount(item.id, index)">
<img :src="item.upStatus == 0 ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png'" alt="">
<div>
<span>{{ item.upCount || 0 }}</span><span v-if="item.upCount > 99">+</span>
</div>
2023-04-03 17:47:57 +08:00
</div>
</div>
2023-04-06 10:56:30 +08:00
<div class="imgs" v-if="item.images.length" @click="$linkTo(`./pickDetail?id=${item.id}`)">
<image v-for="(img, i) in item.images" :key="i" class="banner" :src="img.url"/>
</div>
<div class="imgs" v-if="!item.images.length && item.videos.length" @click="$linkTo(`./pickDetail?id=${item.id}`)">
<video v-for="(video, ins) in item.videos" :key="ins" class="file-img" :src="video.url"/>
2023-04-03 17:47:57 +08:00
</div>
</div>
2023-04-03 17:03:43 +08:00
</div>
</template>
<script>
2023-04-06 10:56:30 +08:00
import { mapState } from 'vuex'
2023-04-03 17:03:43 +08:00
export default {
name: "handpick",
appName: "精选动态",
2023-04-06 10:56:30 +08:00
computed: {
...mapState(['user'])
},
2023-04-03 17:03:43 +08:00
data() {
return {
2023-04-06 10:56:30 +08:00
list: [],
flag: false,
2023-04-03 17:03:43 +08:00
}
},
methods: {
2023-04-06 10:56:30 +08:00
getModule() {
this.$instance.post(`/app/appintegraluserapply/queryModuleByName`).then(res => {
if (res?.data) {
this.getList(res.data)
}
})
},
getList(moduleId) {
this.$instance.post(`/app/appcontentinfo/list-web`, null, {
params: {
moduleId: moduleId,
current: this.current,
areaId: this.user.areaId,
containContent: true,
}
}).then(res => {
if (res?.data) {
this.allList = res.data.records
let newList = this.current==1? res.data.records : [...this.list, ...res.data.records]
let mapList = newList.map(e => {
return {
...e,
images: e?.files.filter(i => i.name.split('.')[1] == 'jpeg') || e?.files.filter(i => i.name.split('.')[1] == 'jpg') || e?.files.filter(i => i.name.split('.')[1] == 'png') || [],
videos: e?.files.filter(i => i.name.split('.')[1] == 'mp4') || [],
}
})
this.list = mapList.map(v => {
return {
...v,
images: v.images.length > 3 ? v.images.slice(0, 3) : v.images,
videos: v.videos.length > 3 ? v.videos.slice(0, 3) : v.videos,
upStatus: 0
}
})
}
})
},
// 点赞
upCount(id,index) {
2023-04-06 15:05:00 +08:00
console.log(id,index);
2023-04-06 10:56:30 +08:00
if (this.flag) return
this.flag = true
this.$instance.post(`/app/appcontentinfo/supportById?id=${id}`).then(res => {
if (res?.code == 0) {
2023-04-06 15:05:00 +08:00
this.flag = false
2023-04-06 10:56:30 +08:00
this.list[index].upStatus = 1
this.$u.toast(`点赞成功`)
}
2023-04-06 15:05:00 +08:00
}).finally(() => this.flag = false)
2023-04-06 10:56:30 +08:00
},
},
onShow() {
this.getModule()
2023-04-03 17:03:43 +08:00
},
onReachBottom() {
this.current++
this.getList()
},
}
</script>
2023-04-03 17:47:57 +08:00
<style lang="scss" scoped>
.handpick {
padding: 24px 32px;
box-sizing: border-box;
.list {
padding: 32px 24px;
box-sizing: border-box;
background: #FFF;
border-radius: 12px;
2023-04-06 10:56:30 +08:00
margin-bottom: 24px;
2023-04-03 17:47:57 +08:00
.top {
display: flex;
justify-content: space-between;
.left {
width: 562px;
overflow:hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.right {
width: 52px;
text-align: center;
img {
width: 40px;
height: 40px;
}
span {
font-size: 28px;
font-weight: 400;
color: #687DA6;
}
}
}
2023-04-06 10:56:30 +08:00
.imgs {
display: flex;
flex-wrap: wrap;
background: #FFF;
image,
video {
width: 200px;
height: 200px;
margin: 0 12px 0 0;
}
image:nth-child(3n + 0),
video:nth-child(3n + 0) {
margin: 0;
2023-04-03 17:47:57 +08:00
}
}
}
}
2023-04-03 17:03:43 +08:00
</style>