You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.7 KiB
79 lines
1.7 KiB
3 years ago
|
<template>
|
||
|
<view class="dabang-share-box" v-else>
|
||
|
<view class="dabang-share-item" v-for="(item,index) in 6" :key="index">
|
||
|
<view class="user-info-box acea-row row-middle">
|
||
|
<view class="header-img">
|
||
|
<image src="../../static/img1.png" mode=""></image>
|
||
|
</view>
|
||
|
<view class="acea-row row-column row-center">
|
||
|
<view class="name">失宠的猫咪</view>
|
||
|
<view class="create-time">5小时前</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="share-word">
|
||
|
抱朴书院孕育自华夏优秀传统文化,以“博学致用,朴含虚”为院训,以“弘扬国粹…
|
||
|
</view>
|
||
|
<view class="img-box acea-row row-around">
|
||
|
<image src="../../static/img1.png"></image>
|
||
|
<image src="../../static/img1.png"></image>
|
||
|
<image src="../../static/img1.png"></image>
|
||
|
</view>
|
||
|
<view class="zan-box acea-row row-middle row-right">
|
||
|
<image src="../../static/zan.png"></image>
|
||
|
<text class="zan-conunt">55</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.dabang-share-box{
|
||
|
width: 100%;
|
||
|
padding: 30rpx;
|
||
|
background-color: #fff;
|
||
|
.dabang-share-item{
|
||
|
color: #222;
|
||
|
padding:20rpx 0;
|
||
|
border-bottom: 1px solid #ececec;
|
||
|
.header-img{
|
||
|
width: 76rpx;
|
||
|
height: 76rpx;
|
||
|
border-radius: 50%;
|
||
|
overflow: hidden;
|
||
|
margin-right: 10rpx;
|
||
|
}
|
||
|
.name{
|
||
|
font-size: 28rpx;
|
||
|
line-height: 40rpx;
|
||
|
}
|
||
|
.create-time{
|
||
|
font-size: 24rpx;
|
||
|
color: #999;
|
||
|
line-height: 34rpx;
|
||
|
}
|
||
|
.share-word{
|
||
|
font-size: 28rpx;
|
||
|
line-height: 46rpx;
|
||
|
margin: 22rpx 0 30rpx;
|
||
|
}
|
||
|
.img-box{
|
||
|
image{
|
||
|
width: 224rpx;
|
||
|
height: 206rpx;
|
||
|
}
|
||
|
}
|
||
|
.zan-box{
|
||
|
margin-top: 20rpx;
|
||
|
image{
|
||
|
width: 30rpx;
|
||
|
height: 32rpx;
|
||
|
margin-right: 20rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|