rk
2025-12-16 2cfceadff437135a255990ab9698788a48adb636
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<template>
    <view class="box">
        <!-- 用户信息 -->
        <view class="box_user">
            <image src="@/static/uni.png" mode="widthFix"></image>
            <view class="box_user_info">
                <text class="box_user_info_name">林之秋</text>
                <view class="box_user_info_desc">
                    <text>一位野生的民间咖啡师。创立于2019年,坐落于上海闵,创立于2019年</text>
                    <view class="open">展开</view>
                </view>
            </view>
            <view class="box_user_submit">关注</view>
        </view>
        <!-- 作品列表 -->
        <view class="box_list">
            <view class="fun_list_item" v-for="(item, index) in 3" :key="index">
                <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>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                content: 'DCloud公司拥有600万开发者用户,几十万应用案例、12亿手机端月活用户,数千款uni-app插件、70+微信/qq群。阿里小程序工具官方内置uni-app(详见),腾讯课堂官方为uni-app录制培训课程(详见),开发者可以放心选择。uni-app在手,做啥都不愁。即使不跨端,uni-app也是更好的小程序开发框架(详见)、更好的App跨平台框架、更方便的H5开发框架。不管领导安排什么样的项目,你都可以快速交付,不需要转换开发思维、不需要更改开发习惯。'
            }
        },
        components: {
            
        }
    }
</script>
 
<style>
    page {
        background-color: #F5F5F5 !important;
    }
</style>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        padding: 32rpx;
        box-sizing: border-box;
        .box_user {
            display: flex;
            align-items: flex-start;
            image {
                width: 140rpx;
                height: 140rpx;
                border-radius: 50%;
                margin-right: 20rpx;
                flex-shrink: 0;
            }
            .box_user_info {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                .box_user_info_name {
                    font-size: 36rpx;
                    font-family: PingFang SC-Semibold, PingFang SC;
                    font-weight: 600;
                    color: #333333;
                }
                .box_user_info_desc {
                    display: flex;
                    align-items: flex-end;
                    text {
                        width: 100%;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        font-size: 24rpx;
                        font-family: PingFang SC-Light, PingFang SC;
                        font-weight: 300;
                        color: #333333;
                    }
                    .open {
                        flex-shrink: 0;
                        font-size: 24rpx;
                        font-family: PingFang SC-Light, PingFang SC;
                        font-weight: 300;
                        color: #999999;
                    }
                }
            }
            .box_user_submit {
                width: 128rpx;
                height: 48rpx;
                line-height: 48rpx;
                text-align: center;
                background: linear-gradient(270deg, #D20A0A 0%, #D95A5A 100%);
                border-radius: 27rpx;
                font-size: 28rpx;
                font-family: PingFang SC-Regular, PingFang SC;
                font-weight: 400;
                color: #FFFFFF;
                margin-left: 58rpx;
                margin-top: 46rpx;
            }
        }
        .box_list {
            margin-top: 60rpx;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            .fun_list_item {
                width: 332rpx;
                height: 540rpx;
                border-radius: 20rpx;
                background-color: white;
                overflow: hidden;
                margin-bottom: 16rpx;
                .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;
                        }
                    }
                }
            }
        }
    }
</style>