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

  1. <template>
  2. <view class="pageBgImg pad">
  3. <topNavbar title="我的评价"></topNavbar>
  4. <view class="card">
  5. <commentItem/>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import commentItem from '../../indexEntry/findShcool/comments/commentItem'
  11. export default {
  12. components: { commentItem },
  13. data() {
  14. return {
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .card {
  21. width: 100%;
  22. padding: 24rpx 28rpx;
  23. margin-bottom: 20rpx;
  24. }
  25. </style>