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

82 lines
1.6 KiB
Vue
Raw Normal View History

2023-04-03 17:03:43 +08:00
<template>
<div class="handpick">
2023-04-03 17:47:57 +08:00
<div class="list">
<div class="top">
<div class="left">百年征和波澜壮阔百年初心历争议弥坚7月1日上午庆祝中国共产党成立100周年</div>
<div class="right">
<img src="https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png" alt="">
<!-- https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png -->
<span>99+</span>
</div>
</div>
<div class="bottom">
<img src="https://cdn.cunwuyun.cn/fengdu/img-jifenlist.png" alt="">
</div>
</div>
2023-04-03 17:03:43 +08:00
</div>
</template>
<script>
export default {
name: "handpick",
appName: "精选动态",
data() {
return {
}
},
methods: {
getList() {
}
},
onShow() {},
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;
.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;
}
}
}
.bottom {
img {
width: 100%;
height: 202px;
}
}
}
}
2023-04-03 17:03:43 +08:00
</style>