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.
28 lines
571 B
28 lines
571 B
<template>
|
|
<view class="newItem" @click="$goPage('/pages/indexEntry/examines/newsDetail/newsDetail')">
|
|
<view class="h2">最新免费开放日来啦!</view>
|
|
<view class="text">2023/08/08——2023/08/09 全天免费开放咯~</view>
|
|
<view class="date">发布时间:2023/08/06</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.newItem {
|
|
padding: 24rpx;
|
|
font-size: 28rpx;
|
|
.h2 {
|
|
font-weight: 500;
|
|
}
|
|
.text {
|
|
color: #686B73;
|
|
padding: 8rpx 0 32rpx 0;
|
|
}
|
|
.date {
|
|
font-size: 20rpx;
|
|
color: #686B73;
|
|
}
|
|
}
|
|
</style>
|