|
@@ -10,6 +10,11 @@
|
|
|
<courseSection :isBuy="isBuy" :isRebuild="isRebuild" :gradeId="gradeId" :menuItem="itemM" :levelId="levelId+'-'+itemM.sectionId"></courseSection>
|
|
|
<u-line v-if="indexM<list.length-1"></u-line>
|
|
|
</view>
|
|
|
+ <u-line v-if="examList.length>0"></u-line>
|
|
|
+ <view class="exam" v-if="examList.length>0" @click="toDo(examList[0].examId)">
|
|
|
+ <view class="eTag">{{examList[0].doType==1?'练习':'考试'}}</view>
|
|
|
+ <view style="margin-left: 15rpx;">{{examList[0].examName}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -47,7 +52,9 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
down:true,
|
|
|
- list:[]
|
|
|
+ list:[],
|
|
|
+ examList:{}
|
|
|
+
|
|
|
|
|
|
};
|
|
|
},
|
|
@@ -58,6 +65,15 @@ export default {
|
|
|
mounted() {
|
|
|
},
|
|
|
methods: {
|
|
|
+ /**
|
|
|
+ * 去做题
|
|
|
+ */
|
|
|
+ async toDo(id,goodsId =0,moduleId = 0, chapterId = 0) {
|
|
|
+
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pages2/bank/questionBank?id='+id+'&goodsid='+goodsId+'&moduleId='+moduleId+'&chapterId='+chapterId+''
|
|
|
+ })
|
|
|
+ },
|
|
|
openChapter(item){
|
|
|
this.down = !this.down
|
|
|
if(!this.down&&this.list.length==0){
|
|
@@ -67,6 +83,7 @@ export default {
|
|
|
this.getReSectionList(item.id,item.courseId,item.moduleId)
|
|
|
}else{
|
|
|
this.getBuySectionList(item.id,item.courseId,item.moduleId)
|
|
|
+ this.getMenuExamList(item.id,item.courseId,item.moduleId)
|
|
|
}
|
|
|
}else{
|
|
|
this.getSectionList(item.id)
|
|
@@ -74,6 +91,14 @@ export default {
|
|
|
|
|
|
}
|
|
|
},
|
|
|
+ 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 => {
|
|
@@ -130,6 +155,21 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+ .eTag{
|
|
|
+ width: 56rpx;
|
|
|
+ height: 28rpx;
|
|
|
+ background: #007AFF;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 20rpx;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 20rpx;
|
|
|
+ }
|
|
|
+ .exam{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin: 20rpx 0;
|
|
|
+ }
|
|
|
.icon_up{
|
|
|
width: 24rpx;
|
|
|
height: 24rpx;
|