teachingList.vue 359 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="teachingDetail">
  3. <statusBar :item="navbarBata"></statusBar>
  4. <teaching-case></teaching-case>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. navbarBata:{
  12. title:'教研室列表',
  13. btn:1
  14. }
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. .teachingDetail{
  21. // background-color: red;
  22. }
  23. </style>