Compare commits

..

No commits in common. "df8f3c76b07ae9f9f069f4b499eeb46d24ff0a4c" and "eef6220af6f3286e1a2bb042ee87549babc2e0db" have entirely different histories.

View File

@ -26,17 +26,15 @@
</view> </view>
<view style="margin-top: 180rpx;"> <view style="margin-top: 180rpx;">
<view class="center flex flex-column flex-start" v-for="detail,index in list" :key="index" @click="only(detail.id,detail.type)"> <view class="center flex flex-column flex-start" v-for="detail,index in list" :key="index" @click="only(detail.id,detail.type)">
<span class="title"> <span class="title">{{detail.title}}</span>
<span class="jiao" v-if="detail.type == 1">
<u-badge :isDot="true" type="error"></u-badge>
</span>
{{detail.title}}
</span>
<span class="span" style="margin-top: 20rpx;"> <span class="span" style="margin-top: 20rpx;">
<!-- <u-parse :content="detail.desc" :selectable="true"></u-parse> --> <!-- <u-parse :content="detail.desc" :selectable="true"></u-parse> -->
<rich-text :nodes="detail.desc" selectable user-select></rich-text> <rich-text :nodes="detail.desc" selectable user-select></rich-text>
</span> </span>
<span class="span" style="margin-top: 20rpx; color: #999999 ;">{{detail.createtime_text}}</span> <span class="span" style="margin-top: 20rpx; color: #999999 ;">{{detail.createtime_text}}</span>
<span class="jiao" v-if="detail.type == 1">
<u-badge :isDot="true" type="error"></u-badge>
</span>
</view> </view>
</view> </view>
<u-loadmore :status="loadStatus" nomoreText="已经到底啦~"/> <u-loadmore :status="loadStatus" nomoreText="已经到底啦~"/>
@ -216,7 +214,7 @@
.center { .center {
margin: 30rpx; margin: 30rpx;
width: 690rpx; width: 690rpx;
// height: 278rpx; height: 278rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx; border-radius: 20rpx 20rpx 20rpx 20rpx;
padding: 30rpx; padding: 30rpx;
@ -235,12 +233,11 @@
font-weight: 800; font-weight: 800;
font-size: 34rpx; font-size: 34rpx;
color: #202020 ; color: #202020 ;
display: flex;
align-items: center;
justify-content: start;
} }
.jiao { .jiao {
margin-right: 20rpx; position: absolute;
left: 0;
top: 0;
} }
} }
</style> </style>