activityList.vue 374 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="activeList">
  3. <statusBar :item="navbarData"></statusBar>
  4. <teaching-case :item="teaData"></teaching-case>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. navbarData:{
  12. title:'活动列表',
  13. btn:1
  14. },
  15. teaData:{
  16. btn:1
  17. }
  18. };
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. .activeList{
  24. }
  25. </style>