123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <view style="margin: 20rpx 0;">
- <view class="title" @click="openChapter(menuItem)">
- <image src="/static/icon/up1.png" class="icon_up" v-if="down"></image>
- <image src="/static/icon/down1.png" class="icon_up" v-if="!down"></image>
- <text style="margin-left: 30rpx;">{{menuItem.name}}</text>
- </view>
- <view v-if="!down">
- <view v-for="(itemM,indexM) in list" >
- <courseSection :menuItem="itemM"></courseSection>
- <u-line v-if="indexM<list.length-1"></u-line>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- import courseSection from '@/pages2/components/course/courseSection.vue';
- export default {
- name: 'courseChapter',
- props: {
- menuItem: {
- type: Object,
- default: {}
- }
- },
- components: {
- courseSection
- },
- data() {
- return {
- down:true,
- list:[]
-
- };
- },
- onLoad() {},
- created() {
-
- },
- mounted() {
-
- },
- methods: {
- openChapter(item){
- this.down = !this.down
- if(!this.down&&this.list.length==0){
- this.getSectionList(item.id)
- }
- },
- getSectionList(chapterId) {
- let self = this
- this.$api.sectionList({chapterId:chapterId}).then(res => {
- if(res.data.code==200){
- for(let i=0;i<res.data.data.length;i++){
- let item = res.data.data[i]
- item.id = item.sectionId
- //判断是否试听
- item.tryListen = false
- if(self.goodsAuditionConfigIdList.indexOf(item.id)!==-1){
- item.tryListen = true
- }
- }
- self.list = res.data.data
- }
- });
- },
- },computed: { ...mapGetters(['goodsAuditionConfigIdList']) },
- };
- </script>
- <style scoped>
- .icon_up{
- width: 24rpx;
- height: 24rpx;
- }
- .title{
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #666666;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- }
- </style>
|