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

22 lines
419 B

1 year ago
  1. <template>
  2. <view class="pageBg">
  3. <view class="infoBox pad">
  4. <info :showSign="true"></info>
  5. </view>
  6. <comments></comments>
  7. </view>
  8. </template>
  9. <script>
  10. import comments from '../comments/comments.vue'
  11. import info from '../shcoolDetail/comp/tab3.vue'
  12. export default {
  13. components: { comments, info }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .infoBox {
  18. background: #F6F6F6;
  19. overflow: hidden;
  20. }
  21. </style>