123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <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" :key="indexM">
- <view v-if="itemM.type!=2">
- <courseSection :courseId="courseId" @playEnd="refreshList($event)" :goodsId="goodsId" :isBuy="isBuy" :nextMenuItem="findNextSection(indexM)" :isRebuild="isRebuild" :gradeId="gradeId" :menuItem="itemM" :levelId="levelId+'-'+itemM.sectionId"></courseSection>
- <u-line v-if="indexM<list.length-1"></u-line>
- </view>
- <view v-if="itemM.type==2">
- <u-line ></u-line>
- <view class="examBox" @click="toDo(itemM.typeId,goodsId,itemM.moduleId,itemM.chapterId,itemM,indexM)">
- <view class="exam">
- <view class="eTag">{{itemM.doType==1?'练习':'考试'}}</view>
- <view style="margin-left: 15rpx;">{{itemM.name}}</view>
- </view>
- <view v-if="isRebuild||itemM.rebuild>0" class="tagRe">待重修</view>
- <view v-else>
- <view :class="{tagGreen:itemM.learning == 1,tagRe:itemM.learning == 0 || itemM.rebuild>0}">
- <text v-if="itemM.rebuild > 0">待重测</text>
- <text v-else-if="itemM.learning == 1">合格</text>
- <text v-else-if="itemM.learning == 0">不合格</text>
-
- </view>
- </view>
-
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- import courseSection from '@/components/course/courseSection.vue';
- export default {
- name: 'courseChapter',
- props: {
- learningOrder:{ //是否设置学习顺序 0 设置 1不设置
- type:Number,
- default:1
- },
- menuItem: {
- type: Object,
- default: {}
- },
- isBuy: {
- type: Boolean,
- default: false
- },
- levelId: {
- type: String,
- default: ""
- },
- goodsId: {
- type: Number,
- default: 0
- },
- courseId: {
- type: Number,
- default: 0
- },
- isRebuild: {
- type: Boolean,
- default: false
- },
- gradeId: {
- type: Number,
- default: 0
- }
- },
- components: {
- courseSection
- },
- data() {
- return {
- down:true,
- list:[],
- examList:{},
- canLearn:false, //是否全部视频看完才可以练习、测试
- };
- },
- onLoad() {},
- created() {
- },
- mounted() {
-
- },
- onPageShow() {
- this.refreshList({isRebuild:this.isRebuild});
- },
- methods: {
- refreshList(isRebuild) {
- console.log(9999)
- let moduleId = this.menuItem.moduleId?this.menuItem.moduleId:0
- if(this.isRebuild){
- this.getReSectionList(this.menuItem.id,this.menuItem.courseId,moduleId)
- }else{
- this.getBuySectionList(this.menuItem.id,this.menuItem.courseId,moduleId)
- // this.getMenuExamList(item.id,item.courseId,moduleId)
- }
-
-
- this.$emit('playEnd',{isRebuild:isRebuild.isRebuild})
- console.log(10000)
- // let moduleId = this.menuItem.moduleId?this.menuItem.moduleId:0
- // this.getBuySectionList(this.menuItem.id,this.menuItem.courseId,moduleId)
- },
- findNextSection(index){
- for(let i=index+1;i<this.list.length;i++){
- return this.list[i];
- }
- return {}
- },
- /**
- * 去做题
- */
- async toDo(id,goodsId =0,moduleId = 0, chapterId = 0,item,index) {
-
- console.log(this.learningOrder)
- if(this.learningOrder == 0) {
- if(this.canLearn) {
-
- let num = await this.bankRecordDoNum(item.typeId)
- //有次数限制
- if(item.answerNum - num > 0 && item.answerNum > 0) {
- // this.$set(this.list[index],'doNum',(item.doNum+1))
- console.log(this.list[index])
- uni.navigateTo({
- url:'/pages2/class/questionBank?courseId='+this.courseId+'&gradeId='+this.gradeId+'&isFromVideo=1&id='+id+'&goodsid='+goodsId+'&moduleId='+moduleId+'&chapterId='+chapterId+''
- })
- //没有答题次数限制
- } else if(item.answerNum == 0) {
- uni.navigateTo({
- url:'/pages2/class/questionBank?courseId='+this.courseId+'&gradeId='+this.gradeId+'&isFromVideo=1&id='+id+'&goodsid='+goodsId+'&moduleId='+moduleId+'&chapterId='+chapterId+''
- })
- } else {
- uni.showToast({
- icon:'none',
- title:'该试卷只能答题'+item.answerNum+'次'
- })
-
- return;
- }
- } else {
- uni.showToast({
- icon:'none',
- title:'请学完视频课程再进行练习和测试'
- })
- }
- } else {
- let num = await this.bankRecordDoNum(item.typeId)
- //有次数限制
- if(item.answerNum - item.doNum > 0 && item.answerNum > 0) {
- // this.$set(this.list[index],'doNum',(item.doNum+1))
- console.log(this.list[index])
- uni.navigateTo({
- url:'/pages2/class/questionBank?courseId='+this.courseId+'&gradeId='+this.gradeId+'&isFromVideo=1&id='+id+'&goodsid='+goodsId+'&moduleId='+moduleId+'&chapterId='+chapterId+''
- })
- //没有答题次数限制
- } else if(item.answerNum == 0) {
- uni.navigateTo({
- url:'/pages2/class/questionBank?courseId='+this.courseId+'&gradeId='+this.gradeId+'&isFromVideo=1&id='+id+'&goodsid='+goodsId+'&moduleId='+moduleId+'&chapterId='+chapterId+''
- })
- } else {
- uni.showToast({
- icon:'none',
- title:'该试卷只能答题'+item.answerNum+'次'
- })
-
- return;
- }
- }
-
- },
- bankRecordDoNum(examId) {
- return new Promise(resolve => {
- this.$api.bankRecordDoNum({
- goodsId:this.goodsId,
- gradeId:this.gradeId,
- chapterId:this.menuItem.id,
- courseId:this.courseId,
- moduleId:0,
- examId:examId,
- }).then(res => {
- resolve(res.data.data)
- })
- })
- },
- openChapter(item){
- console.log(this.menuItem)
- this.down = !this.down
- if(!this.down&&this.list.length==0){
- console.log(item.id,69)
- if(this.isBuy){
- let moduleId = item.moduleId?item.moduleId:0
- if(this.isRebuild){
- this.getReSectionList(item.id,item.courseId,moduleId)
- }else{
- this.getBuySectionList(item.id,item.courseId,moduleId)
- // this.getMenuExamList(item.id,item.courseId,moduleId)
- }
- }else{
- this.getSectionList(item.id)
- }
-
- }
- },
- getMenuExamList(chapterId,courseId,moduleId) {
- let self = this
- this.$api.menuExamList({chapterId:chapterId,courseId:courseId,moduleId:moduleId}).then(res => {
- if(res.data.code==200){
- self.examList = res.data.rows
- }
- });
- },
- getSectionList(chapterId) {
- let self = this
- this.$api.sectionList(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
- }
- }
-
- let newArr = res.data.data.filter(item => {
- console.log(item)
- return item.type != 2;
- })
- this.canLearn = newArr.every(item => {
- console.log(item)
- if(item.learning == 1) {
- return true;
- } else {
- return false;
- }
- })
- self.list = res.data.data
- }
- });
- },
- getReSectionList(chapterId,courseId,moduleId) {
- let self = this
- this.$api.reSectionList({chapterId:chapterId,gradeId:this.gradeId,courseId:courseId,rebuild:1,moduleId:moduleId}).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
- }
- }
- let newArr = res.data.data.filter(item => {
- console.log(item)
- return item.type != 2;
- })
- this.canLearn = newArr.every(item => {
- console.log(item)
- if(item.learning == 1) {
- return true;
- } else {
- return false;
- }
- })
- self.list = res.data.data
- }
- });
- },
- getBuySectionList(chapterId,courseId,moduleId) {
- let self = this
- this.$api.reSectionList({chapterId:chapterId,gradeId:this.gradeId,courseId:courseId,moduleId:moduleId}).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
- }
- }
- let newArr = res.data.data.filter(item => {
- return item.type != 2;
- })
- this.canLearn = newArr.every(item => {
- console.log(item)
- if(item.learning == 1) {
- return true;
- } else {
- return false;
- }
- })
- self.list = res.data.data
- }
- });
- },
- },computed: { ...mapGetters(['goodsAuditionConfigIdList']) },
- };
- </script>
- <style scoped>
- .tagRe{
- width: 80rpx;
- height: 28rpx;
- background: #FF3B30;
- border-radius: 8rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- text-align: center;
- }
- .tagGreen{
- width: 80rpx;
- height: 28rpx;
- background: #34C759;
- border-radius: 8rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- text-align: center;
- }
- .eTag{
- width: 56rpx;
- height: 28rpx;
- background: #007AFF;
- border-radius: 8rpx;
- color: #FFFFFF;
- font-size: 20rpx;
- text-align: center;
- line-height: 28rpx;
- }
- .examBox{
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .exam{
- display: flex;
- align-items: center;
- margin: 20rpx 0;
- }
- .icon_up{
- width: 24rpx;
- height: 24rpx;
- }
- .title{
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #666666;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- margin-bottom:30rpx;
- }
- </style>
|