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.
29 lines
463 B
29 lines
463 B
<template>
|
|
<view class="pageBgImg pad">
|
|
<topNavbar title="我的评价"></topNavbar>
|
|
<view class="card">
|
|
<commentItem/>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import commentItem from '../../indexEntry/findShcool/comments/commentItem'
|
|
export default {
|
|
components: { commentItem },
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.card {
|
|
width: 100%;
|
|
padding: 24rpx 28rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
</style>
|