index.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view>
  3. <view class="footer" :style="havaBackground?'':'background: transparent;'">
  4. <view class="wrap">
  5. <!-- <view class="foot-nav dflex">
  6. <view class="li">学习中心</view>
  7. <text>|</text>
  8. <view class="li">我的课程</view>
  9. <text>|</text>
  10. <view class="li">我的题库</view>
  11. <text>|</text>
  12. <view class="li">我的班级</view>
  13. <text>|</text>
  14. <view class="li">我的积分</view>
  15. <text>|</text>
  16. <view class="li">个人资料</view>
  17. </view> -->
  18. <!-- <view>版权所有 © 2020 湖南湘德教育有限公司 增值电信业务经营许可证:湘B2-20090096 出版物经营许可 营业执照</view> -->
  19. <view>Copyright © 2020 imooc.com All Rights Reserved | <a href="">京ICP备 12003892号-11</a></view>
  20. </view>
  21. </view>
  22. <view class="placeholder-view"></view>
  23. </view>
  24. </template>
  25. <script>
  26. const app = getApp();
  27. export default {
  28. data() {
  29. return {
  30. };
  31. },
  32. components: {},
  33. props: {
  34. havaBackground:{
  35. type:Boolean,
  36. default:true
  37. }
  38. },
  39. watch: {},
  40. mounted() {},
  41. methods: {
  42. }
  43. };
  44. </script>
  45. <style>
  46. @import '/static/css/main.css';
  47. </style>