学员端小程序
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.
 
 
 

34 lines
581 B

<template>
<view class="pageBgImg">
<topNavbar title="信息资讯"></topNavbar>
<view class="pad">
<view class="card">
<view class="h2">最新免费开放日来啦</view>
<view class="content">
内容
</view>
<view class="date">发布时间2023/08/06</view>
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.card {
padding: 28rpx 24rpx;
.h2 {
font-size: 28rpx;
font-weight: 500;
}
.content {
padding: 40rpx 0 100rpx;
}
.date {
color: #686B73;
font-size: 24rpx;
}
}
</style>