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.
|
|
<template> <view class="content"> <view class="list" v-for="item in 12"> <view class="lf-row-between"> <view class="lf-font-32 lf-color-222 lf-line-1" style="width: 420rpx;">小程序里发动态教程</view> <view class="lf-font-24 lf-color-777">2021-08-06</view> </view> <view class="lf-m-t-10 lf-font-28 lf-color-777">小程序里发动态教程</view> </view> <u-back-top :scrollTop="pageScrollTop"></u-back-top> </view></template>
<script> export default { data(){ return { } }, onLoad(){ }, methods: { } }</script>
<style> page{ background-color: #F5F5F5; }</style><style lang="scss" scoped="scoped"> .content{ width: 750rpx; height: max-content; padding: 30rpx 32rpx; box-sizing: border-box; .list{ width: 686rpx; height: max-content; background-color: #FFFFFF; border-radius: 10rpx; box-sizing: border-box; padding: 30rpx; &:nth-child(n+2){ margin-top: 30rpx; } } }</style>
|