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.
26 lines
438 B
26 lines
438 B
<template>
|
|
<view class="pageBgImg">
|
|
<topNavbar title="信息资讯"></topNavbar>
|
|
<view class="ul">
|
|
<view class="card" v-for="(item,index) in 6" :key="index">
|
|
<newItem></newItem>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import newItem from '../comp/newItem'
|
|
export default {
|
|
components: { newItem }
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.ul {
|
|
padding: 28rpx;
|
|
}
|
|
.card {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
</style>
|