doum
14 小时以前 98995ef3dff4eefe6658022345276806bd47d557
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
    <view class="fun_list_item" @click="toShopDetails">
        <view class="fun_list_item_img">
            <image src="@/static/uni.png" mode="heightFix"></image>
        </view>
        <view class="fun_list_item_info">
            <view class="fun_list_item_info_top">
                <text>飞盘之后,新中产又被围炉煮茶割韭菜?飞盘之后,新中产又</text>
            </view>
            <view class="fun_list_item_info_bottom">
                <view class="fun_list_item_info_bottom_left">
                    <image src="@/static/logo.png" mode="widthFix"></image>
                    <text>林之秋</text>
                </view>
                <view class="fun_list_item_info_bottom_right">
                    <image src="@/static/icon/home_ic_shoucang@2x.png" mode="widthFix"></image>
                    <text>389</text>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        },
        methods: {
            toShopDetails() {
                this.$emit('jump', '12345')
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .fun_list_item {
        width: 332rpx;
        height: 580rpx;
        border-radius: 20rpx;
        background-color: white;
        overflow: hidden;
        margin-bottom: 36rpx;
        .fun_list_item_img {
            width: 100%;
            height: 420rpx;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            image {
                height: 100%;
            }
        }
        .fun_list_item_info {
            width: 100%;
            padding: 16rpx 12rpx 24rpx 12rpx;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            .fun_list_item_info_top {
                width: 100%;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                overflow: hidden;
                text {
                    font-size: 28rpx;
                    font-family: PingFang SC-Medium, PingFang SC;
                    font-weight: 500;
                    color: #333333;
                }
            }
            .fun_list_item_info_bottom {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 15rpx;
                .fun_list_item_info_bottom_left {
                    width: 200rpx;
                    display: flex;
                    align-items: center;
                    image {
                        width: 32rpx;
                        height: 32rpx;
                        border-radius: 50%;
                        margin-right: 6rpx;
                    }
                    text {
                        width: 100%;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        font-size: 24rpx;
                        font-family: PingFang SC-Medium, PingFang SC;
                        font-weight: 500;
                        color: #999999;
                    }
                }
                .fun_list_item_info_bottom_right {
                    display: flex;
                    align-items: center;
                    image {
                        width: 24rpx;
                        height: 24rpx;
                        margin-right: 6rpx;
                    }
                    text {
                        font-size: 24rpx;
                        font-family: PingFang SC-Medium, PingFang SC;
                        font-weight: 500;
                        color: #999999;
                    }
                }
            }
        }
    }
</style>