liveActivityList.vue 887 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="activityList">
  3. <statusBar :item="navbarData"></statusBar>
  4. <!-- <teaching-case :item="teaData"></teaching-case> -->
  5. <view class="" style="padding-bottom: 50rpx;">
  6. <teaching-case :activeList="activeList" :indexId="index"></teaching-case>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. navbarData: {
  15. title: '直播活动',
  16. btn: 1
  17. },
  18. teaData: {
  19. btn: 1
  20. },
  21. activeList: [],
  22. };
  23. },
  24. methods:{
  25. // 获取教研活动
  26. getData(){
  27. let data={
  28. openid:uni.getStorageSync('oId'),ty:0
  29. }
  30. this.$request('/selectActivity',"POST",data).then(res=>{
  31. console.log(res[0]);
  32. // this.activeList=[...this.activeList,...res[0]]
  33. this.activeList=res[0]
  34. })
  35. },
  36. },
  37. onShow() {
  38. this.getData()
  39. }
  40. }
  41. </script>
  42. <style lang="scss">
  43. .activityList {}
  44. </style>