123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <template>
- <swiper :circular="true" @change="onChangeTab" :duration="currentDuration"
- :current="current" class="ezy-study-swiper" :class="'ezy-study-swiper'+ currentProduct" >
- <swiper-item v-for="(item,index) in zhangList" :key="index">
- <shuxueZhangjie v-if="currentProduct ==1" @clickGradeTerm="clickGradeTerm"
- @handleCheckCatalogue="handleCheckCatalogue(item)" @listClick="listClick" :gradeTerm='gradeTerm'
- :options="item">
- </shuxueZhangjie>
- <yingyuZhangjie v-if="currentProduct ==2" @clickGradeTerm="clickGradeTerm"
- @handleCheckCatalogue="handleCheckCatalogue(item)" @listClick="listClick" :gradeTerm='gradeTerm' :options="item">
- </yingyuZhangjie>
- </swiper-item>
- </swiper>
- <!-- 蛋 -->
- <egg-dialog ref="eggDialogRef" @eggBtn="eggBtn"></egg-dialog>
- <catalogue ref="catalogueRef" :list=zhangList @change-zhang="handleChangeZhang"></catalogue>
- <CustomTabBar :cardId="cardId" :currentTabNumber="0" :nianji="nianji" :zhangId="zhangId"></CustomTabBar>
- <tip-small-dialog ref="goPayDialogRef" @confirm-btn="goPayPage" :content="tipContent"></tip-small-dialog>
- <tip-middle-dialog ref="youkeDialogRef" @confirm-btn="ykConfirm" :content="YouKeContent"></tip-middle-dialog>
- </template>
- <script setup>
- import {
- userZhangInfo,
- userLocate,
- userZhangForntInfo,
- userZhangNextInfo,
- getCommonZhangInfo
- } from "@/api/learnPlan.js"
- import {
- reactive,
- ref,
- nextTick,
- getCurrentInstance,
- onMounted
- } from "vue";
- import {
- onLoad
- } from '@dcloudio/uni-app';
- import catalogue from "@/components/catalogue/catalogue.vue";
- import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
- import tipSmallDialog from '@/components/dialog/tipSmallDialog.vue'
- import tipMiddleDialog from '@/components/dialog/tipMiddleDialog.vue';
- import dSwiper from '@/components/wSwiper/DSwiper.vue';
- import shuxueZhangjie from './product/shuxue.vue';
- import yingyuZhangjie from './product/yingyu.vue';
- import {
- useTabBarHistory
- } from '@/utils/emitEvents.js';
- import eggDialog from './eggDialog.vue'
- import {
- toast,
- getUserIdentity
- } from "@/utils/common";
- import cacheManager from "@/utils/cacheManager.js";
- const tipContent = '付费章节,是否前往开通付费?'; //当前产品
- const goPayDialogRef = ref(null);
- const youkeDialogRef = ref(null);
- const dSwiperRef = ref(null);
- const eggDialogRef = ref(null);
- const current = ref(0);
- const currentDuration = ref(500)
- const YouKeContent = '您当前是游客身份,登录后才能浏览内容,现在去登录?';
- const zhangId = ref(null); //游客使用
- const nianji = ref(null); //游客使用
- const cardId = ref(null); //游客使用
- const catalogueRef = ref(null);
- const youkeZhangInfoData = ref(null);
- const currentProduct = ref(null);
- const selectZhang = ref(null);
- const zhangList = ref(null);
- const gradeTerm = ref(null);
- let infoData = reactive({
- jieList: [],
- haveFlag: '',
- nianji: '',
- number: '',
- cardId: '',
- zhangId: '',
- zhangName: '',
- numberStr: '',
- });
- const gradeMapping = {
- 1: 'L1',
- 2: 'L2',
- 3: 'L3',
- 4: 'L4',
- 5: 'L5',
- 6: 'L6'
- };
- const termMapping = {
- 1: ' 数学',
- 2: ' 英语'
- };
- onLoad((options) => {
- init(options)
- })
- function onChangeTab(e) {
- console.log('e',e);
- console.log(e.detail.current);
- if( cacheManager.get('auth')){
- infoData.zhangId = cacheManager.get('zhangInfo').zhangList[e.detail.current].zhangId
- cacheManager.updateObject('auth', {
- currentZhang: e.detail.current,
- zhangId: infoData.zhangId
- })
- }
- }
- function init(options) {
- if (cacheManager.get('auth')) {
- //会员 取auth
- selectZhang.value = cacheManager.get('auth');
- currentProduct.value = cacheManager.get('auth').cardId;
- //let currentObject = this.cacheZhangInfo.jieList.find(item => item.jieId == this.jieId);
- console.log(selectZhang.value);
- // 已登录
- if (selectZhang.value.firstLogin) {
- nextTick(() => {
- eggDialogRef.value.eggShow();
- })
- }
- getZhangInfo()
- } else {
- zhangId.value = options.zhangId
- nianji.value = options.nianji
- cardId.value = options.cardId
- currentProduct.value = options.cardId
- // 未登录 游客
- getCommonZhang(options)
- }
- }
- function getZhangInfo(data) {
- let req = {
- nianji: selectZhang.value.nianji,
- cardId: selectZhang.value.cardId,
- zhangId: selectZhang.value.zhangId,
- }
- userZhangInfo(req).then(res => {
- cacheManager.set('zhangInfo', res.data)
- let zhang = cacheManager.get('zhangInfo').zhangList.findIndex(zhang => zhang.zhangId == selectZhang
- .value.zhangId);
- if (zhang != -1) {
- cacheManager.updateObject('auth', {
- currentZhang: zhang
- })
- } else {
- cacheManager.updateObject('auth', {
- currentZhang: 0
- })
- }
- nextTick(() => {
- translateData(res.data)
- zhangList.value = res.data.zhangList
- current.value = cacheManager.get('auth').currentZhang
- infoData.zhangId = res.data.zhangList[current.value].zhangId
- recordZhangJie()
- })
- })
- }
- function getCommonZhang(data) {
- let req = {
- nianji: data.nianji,
- cardId: data.cardId,
- zhangId: data.zhangId,
- }
- getCommonZhangInfo(req).then(res => {
- translateData(res.data)
- youkeZhangInfoData.value = res.data
- zhangList.value = res.data.zhangList
- current.value = 0
- // infoData.haveFlag = res.data.haveFlag
- // infoData.nianji = res.data.nianji
- // infoData.number = res.data.number
- // infoData.numberStr = res.data.numberStr
- // infoData.cardId = res.data.cardId
- // infoData.zhangId = res.data.zhangId
- // infoData.zhangName = res.data.zhangName
- //getNewData()
- })
- }
- function getNewData() {
- selectZhang.value.zhangId = cacheManager.get('zhangInfo').zhangId;
- selectZhang.value.cardId = cacheManager.get('zhangInfo').cardId;
- selectZhang.value.nianji = cacheManager.get('zhangInfo').nianji;
- cacheManager.updateObject('auth', {
- zhangId: selectZhang.value.zhangId,
- cardId: selectZhang.value.cardId,
- nianji: selectZhang.value.nianji,
- })
- }
- function recordZhangJie() {
- let req = {
- nianji: selectZhang.value.nianji,
- userId: cacheManager.get('auth').userId,
- zhangId: infoData.zhangId,
- cardId: selectZhang.value.cardId,
- }
- userLocate(req).then(res => {
- })
- }
- function goPayPage() {
- uni.redirectTo({
- url: '/pages/pay/svip?cardId='+currentProduct.value
- })
- }
- function handleChangeZhang(data) {
- console.log(data);
- selectZhang.value = data;
- const authCode = getUserIdentity();
- if (authCode !== 'Visitor') {
- cacheManager.updateObject('auth', {
- zhangId: data.zhangId
- })
- }
- currentDuration.value = 0
- setTimeout(() => {
- current.value = data.number - 1
- nextTick(() => {
- currentDuration.value = 500
- })
- }, 100)
- // init()
- }
- function goKaoshi(data) {
- uni.redirectTo({
- // url: `/pages/unitTest/index?jieNumber=` + data.number
- url: `/pages/unitTest/index?jieId=` + data.jieId
- })
- }
- function goLookShipin(data) {
- if (!cacheManager.get('auth')) {
- console.log('zhangList.value[0].jieList[0]',zhangList.value[0].jieList);
- let youkeData = {
- cardId:cardId.value,
- nianji:nianji.value,
- zhangId:zhangId.value,
- jieList:zhangList.value[0].jieList,
- jieName:zhangList.value[0].jieList[0].jieName
- }
- uni.redirectTo({
- url: '/pages/study/lookShipin?youkePageData=' + JSON.stringify(youkeData)
- })
- } else {
- uni.redirectTo({
- url: '/pages/study/lookShipin?jieId=' + data.jieId
- })
- }
- }
- function translateData(data) {
- gradeTerm.value = termMapping[data.cardId] +' · '+ gradeMapping[data.nianji]
- }
- function listClick(data) {
- console.log('data', data);
- if (!cacheManager.get('auth') && data.firstFlag != 1) {
- youkeDialogRef.value.handleShow();
- return;
- }
- const authCode = getUserIdentity();
- console.log('authCode', authCode);
- if (!(authCode == 'VIP' || data.firstFlag == 1)) {
- goPayDialogRef.value.handleShow();
- return false
- }
- if (data.type == 2) {
- // 最后一项
- goKaoshi(data)
- } else {
- goLookShipin(data)
- }
- }
- function handleCheckCatalogue(item) {
- catalogueRef.value.showPopup(item);
- }
- function clickGradeTerm() {
- if(cacheManager.get('auth')){
- cacheManager.updateObject('auth', {
- currentZhang: 0
- })
- }
- uni.navigateTo({
- url: `/pages/selectGradesTerms/index`,
- })
- }
- // 游客弹窗---确定
- function ykConfirm() {
- uni.redirectTo({
- url: '/pages/login/index'
- });
- }
- function eggBtn() {
- console.log('点击:开启提分之旅');
- cacheManager.updateObject('auth', {
- firstLogin: false
- })
- }
- </script>
- <style>
- </style>
|