2 Achegas 0f6644f3cc ... 9bcfd0a245

Autor SHA1 Mensaxe Data
  wangxy 9bcfd0a245 Merge remote-tracking branch 'origin/2025鹅状元dev' into 2025鹅状元dev hai 2 días
  wangxy 9a0deb991e update bug调整 hai 2 días
Modificáronse 1 ficheiros con 6 adicións e 13 borrados
  1. 6 13
      components/catalogue/catalogue.vue

+ 6 - 13
components/catalogue/catalogue.vue

@@ -5,7 +5,9 @@
 			:style="{backgroundImage: 'url(' + catalogueBjFun() + ')'}">
 			<uni-icons @click="handleClose" class="catalogue-close-btn"></uni-icons>
 			<!-- 当前上下册只针对数学 -->
-			<view v-if="subjectId == 1" class="catalogue-nianji-title">{{ jieTexts ? jieTexts[0]: ''}}</view>
+      <view v-if="subjectId == 1" class="catalogue-nianji-title">{{ jieTexts ? jieTexts[0]: ''}}</view>
+      <!-- 当前只针对新版英语     -->
+      <view v-if="subjectId == 2 && typeId == 1" class="catalogue-nianji-title">{{ jieTexts ? jieTexts[0]: ''}}</view>
 			<!-- 目录区域 -->
 			<uni-collapse v-model="activeCollapse" class="ezy-catalogue-collapse"
 				:class="{ 'ezy-catalogue-collapse-vip': AuthCode === 'VIP'}" accordion>
@@ -14,6 +16,9 @@
 					<view v-if="subjectId == 1 && index == shuxueShangxia" class="catalogue-nianji-title catalogue-mt">
 						{{jieTexts ? jieTexts[1]: ''}}
 					</view>
+          <view v-if="subjectId == 2 && typeId == 1 && index == shuxueShangxia" class="catalogue-nianji-title catalogue-mt">
+            {{jieTexts ? jieTexts[1]: ''}}
+          </view>
 					<uni-collapse-item title-border="none" :border="false" :name="index+''" class="collapse-item-box"
 						:class="{ 'collapse-active': activeCollapse === index+''}">
 						<template v-slot:title>
@@ -67,17 +72,6 @@
 		onLoad
 	} from '@dcloudio/uni-app';
 
-	// 旧道,上下分册 LevelId
-	const ShuxueObj = {
-		7: 6,
-		8: 6,
-		9: 11,
-		10: 11,
-		11: 11,
-		12: 12,
-	}
-
-
 	const growthType = ref(null);
 	const AuthCode = ref(null);
 	const scrollTop = ref(0)
@@ -101,7 +95,6 @@
 			} else {
 				levelId.value = options.levelId;
 			}
-			// shuxueShangxia.value = ShuxueObj[levelId.value];
 		}
 
 	})