| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view>
- <view class="footer" :style="havaBackground?'':'background: transparent;'">
- <view class="wrap">
- <!-- <view class="foot-nav dflex">
- <view class="li">学习中心</view>
- <text>|</text>
- <view class="li">我的课程</view>
- <text>|</text>
- <view class="li">我的题库</view>
- <text>|</text>
- <view class="li">我的班级</view>
- <text>|</text>
- <view class="li">我的积分</view>
- <text>|</text>
- <view class="li">个人资料</view>
- </view> -->
- <!-- <view>版权所有 © 2020 湖南湘德教育有限公司 增值电信业务经营许可证:湘B2-20090096 出版物经营许可 营业执照</view> -->
- <view>Copyright © 2020 imooc.com All Rights Reserved | <a href="">京ICP备 12003892号-11</a></view>
- </view>
- </view>
- <view class="placeholder-view"></view>
- </view>
- </template>
- <script>
- const app = getApp();
- export default {
- data() {
- return {
- };
- },
- components: {},
- props: {
- havaBackground:{
- type:Boolean,
- default:true
- }
- },
- watch: {},
- mounted() {},
- methods: {
- }
- };
- </script>
- <style>
- @import '/static/css/main.css';
- </style>
|