123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <template>
- <view class="content">
- <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index">
- <image :src="item.img" mode="aspectFill"></image>
- <view class="img-right">
- <view class="hflex acenter jbetween right-top">
- <text>{{item.name}}</text>
- <text>{{item.time}}</text>
- </view>
- <view class="text">{{item.content}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return {
- list: []
- }
- },
- onLoad() {
- this.getlist()
- },
- onShow() {
-
- },
- onPullDownRefresh() {
-
- },
- onReachBottom() {
-
- },
- methods: {
- getlist() {
- this.list = [
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- },
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- },
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- },
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- },
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- },
- {
- img: 'https://dummyimage.com/279x155/e3e3e3/fff',
- name: '爱思考的大黄猫',
- content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
- time: '1小时前'
- }
- ]
- },
- }
- }
- </script>
- <style lang="scss">
- .content {
- background-color: #FFFFFF;
- padding: 0 28rpx;
- .list-item {
- padding: 28rpx 0 32rpx;
- border-bottom: 1px solid #F5F5F5;
- image {
- width: 92rpx;
- height: 92rpx;
- border-radius: 50%;
- }
- .img-right {
- width: calc(100% - 92rpx);
- padding: 0 0 0 20rpx;
- .right-top {
- width: 100%;
- text:first-child {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #333333;
- }
- text:last-child {
- font-size: 22rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #999999;
- }
- }
- .text {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #666666;
- padding: 14rpx 0 0;
- }
- }
- }
- }
- </style>
|