12345678910111213141516171819202122232425 |
- <template>
- <view class="teachingDetail">
- <statusBar :item="navbarBata"></statusBar>
- <teaching-case></teaching-case>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- navbarBata:{
- title:'教研室列表',
- btn:1
- }
- };
- }
- }
- </script>
- <style lang="scss">
- .teachingDetail{
- // background-color: red;
- }
- </style>
|