1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="column hidden" style="height: 100%;">
- <view class="p20 bgf" style="z-index: 999;">
- <u-subsection class="subsection" :list="list" :current="current" bgColor="#e7f1fe" activeColor="#1677ff"
- :fontSize="15" :bold="false" @change="sectionChange"></u-subsection>
- </view>
- <qiweiUrgeCourse v-if="current==0"></qiweiUrgeCourse>
- <userUrgeCourse v-else></userUrgeCourse>
- </view>
- </template>
- <script>
- import qiweiUrgeCourse from "@/components/qiweiUrgeCourse.vue"
- import userUrgeCourse from "@/components/userUrgeCourse.vue"
- export default {
- components: {
- qiweiUrgeCourse,
- userUrgeCourse
- },
- data() {
- return {
- list: [{
- name: '企微',
- }, {
- name: '注册会员'
- }],
- current:0
- }
- },
- onShow() {
- },
- methods: {
- sectionChange(index){
- this.current=index
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|