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.
23 lines
419 B
23 lines
419 B
<template>
|
|
<view class="pageBg">
|
|
<view class="infoBox pad">
|
|
<info :showSign="true"></info>
|
|
</view>
|
|
<comments></comments>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import comments from '../comments/comments.vue'
|
|
import info from '../shcoolDetail/comp/tab3.vue'
|
|
export default {
|
|
components: { comments, info }
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.infoBox {
|
|
background: #F6F6F6;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|