| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <template>
- <view class="word-list-page">
- <view class="icon-title-navBar-box">
- <view @click="goBack" class="nav-bar-icon"></view>
- <text class="nav-bar-title">{{ listData.title || "" }}</text>
- </view>
- <view class="ezy-page-body word-body-box">
- <view
- class="word-tab-box"
- v-if="listData.danyuanNumberList && listData.danyuanNumberList.length > 0"
- >
- <!-- disabled-->
- <icon class="word-jt jt-left" :class="{ disabled: listData.activeIndex === 0 }"/>
- <view class="tab-item-list" id="tab-item-list">
- <!-- active -->
- <ezyActiveVue
- :id="'item-' + item.danyuanId"
- class="ezy-btn-active tab-item"
- v-for="(item, index) in listData.danyuanNumberList"
- :key="item.danyuanId"
- :class="{ active: listData.activeIndex == index }"
- v-show="
- isTargetInSameGroup(
- listData.danyuanNumberList,
- listData.danyuanNumberList[listData.activeIndex],
- item.danyuanId,
- )
- "
- @click="handleTabClick(index)"
- >
- Unit{{ item.number }}
- </ezyActiveVue>
- </view>
- <!-- disabled-->
- <icon class="word-jt jt-right"
- :class="{ disabled: listData.activeIndex === listData.danyuanNumberList.length - 1 }"/>
- </view>
- <swiper
- class="word-list-swiper-box"
- :indicator-dots="false"
- :autoplay="false"
- :circular="false"
- :current="listData.activeIndex"
- @change="handleSwiperChange"
- @touchstart="handleSwiperTouchStart"
- @touchmove="handleSwiperTouchMove"
- :disable-touch="isSwiperDisabled"
- >
- <swiper-item
- class="word-list-swiper-item"
- v-for="citem in unitList"
- :key="citem.danyuanId"
- @touchstart="handleTouchStart"
- @touchend="handleTouchEnd"
- >
- <view
- class="word-list-body"
- v-if="citem.wordList && citem.wordList.length > 0"
- >
- <!-- num -->
- <view class="word-num-box">
- <icon></icon
- >
- <text
- >{{ citem.studyCount || 0 }}/{{ citem.count || 0 }}词
- </text
- >
- </view>
- <!-- 单词 -->
- <view
- class="word-list-item"
- v-for="(item, index) in citem.wordList"
- :key="index"
- @click="toWord(item)"
- :class="{ active: item.wcFlag == 1 }"
- >
- <view class="item-word">
- <view class="word-text">
- <text
- v-for="(word, wordIndex) in item.chaifen"
- :key="wordIndex"
- class="word-color"
- >
- {{ word }}
- </text>
- </view>
- <view class="phonetic-alphabet">{{
- item.yinbiao || ""
- }}
- </view>
- </view>
- <view class="item-explain">
- <view class="item-explain-content">
- <view
- class="explain-text"
- v-for="(meaning, meaningIndex) in item.jianyi"
- :key="meaningIndex"
- >{{ meaning }}
- </view
- >
- </view>
- </view>
- <view class="item-arrow">
- <icon></icon>
- </view>
- </view>
- </view>
- <!-- 没有单词 -->
- <view class="no-word-box" v-else> 暂无单词</view>
- </swiper-item>
- </swiper>
- </view>
- <tip-small-dialog ref="goPayDialogRef" @confirm-btn="goPayPage" content="需要购买当前课程才能学习" qrBtnName="前往购买"></tip-small-dialog>
- </view>
- </template>
- <script setup>
- import {reactive, ref, nextTick, computed, getCurrentInstance} from "vue";
- import {
- toast,
- getDataFromStr,
- useActiveDomIntoView,
- isTargetInSameGroup,
- } from "@/utils/common";
- import {onLoad} from "@dcloudio/uni-app";
- import {getWordZhangList} from "@/api/chaojidanci.js";
- import cacheManager from "@/utils/cacheManager.js";
- import {useSwiper} from "@/utils/useSwiper";
- import tipSmallDialog from "@/components/dialog/tipSmallDialog.vue";
- import ezyActiveVue from "@/components/ezyActive/ezyActive.vue";
- const goPayDialogRef = ref(null);
- const listData = reactive({
- danyuanNumberList: [], //节名称
- title: "", // 版本+年级+学期
- wordList: [], // 单词列表,默认值设为空数组
- activeIndex: 0,
- });
- let danyuanId = ref(null);
- let routerOpt = ref(false);
- let wordLeft = ref(0);
- const unitList = ref([]);
- const info = reactive({
- levelId: null,
- zhangId: null,
- });
- const {swiperData, handleTouchStart, handleTouchEnd, userCode} = useSwiper(
- listData,
- (userCode) => {
- },
- );
- // 计算属性,控制 swiper 是否禁用触摸
- const isSwiperDisabled = computed(() => {
- // 检查下一个项是否被锁定
- const nextIndex = listData.activeIndex + 1;
- if (nextIndex < listData.danyuanNumberList.length) {
- const nextItem = listData.danyuanNumberList[nextIndex];
- if (nextItem.lock) {
- return true;
- }
- }
- return !swiperData.isAllowed;
- });
- // 记录swiper触摸开始位置
- let startX = 0;
- // 处理swiper触摸开始
- function handleSwiperTouchStart(e) {
- startX = e.touches[0].clientX;
- }
- // 处理swiper触摸移动
- function handleSwiperTouchMove(e) {
- const currentX = e.touches[0].clientX;
- const diffX = currentX - startX;
- // 向左滑动
- if (diffX < -50) {
- // 检查下一个项是否被锁定
- const nextIndex = listData.activeIndex + 1;
- if (nextIndex < listData.danyuanNumberList.length) {
- const nextItem = listData.danyuanNumberList[nextIndex];
- if (nextItem.lock) {
- // 阻止滑动
- e.preventDefault();
- // 弹出弹窗
- goPayDialogRef.value.handleShow();
- }
- }
- }
- }
- onLoad((options) => {
- routerOpt = options;
- // 非游客
- danyuanId.value = routerOpt.danyuanId;
- getWordListData();
- });
- // Swiper 切换
- function handleSwiperChange(e) {
- // 只有当 swiper 的变化是由用户手动滑动引起的,才调用 updataShuju 函数
- // 避免由数据更新引起的 swiper 变化触发二次请求
- if (e.detail.source === 'touch') {
-
- const currentIndex = e.detail.current;
- const item = listData.danyuanNumberList[currentIndex];
- if (item.lock) {
- // 弹出弹窗让用户确认是否去购买
- goPayDialogRef.value.handleShow();
- // 回退到原索引
- nextTick(() => {
- listData.activeIndex = e.detail.current - 1 >= 0 ? e.detail.current - 1 : 0;
- });
- return;
- return;
- }
-
- listData.activeIndex = e.detail.current;
- if (!swiperData.isAllowed) {
- // 不满足条件时回退到原索引
- nextTick(() => {
- listData.activeIndex = 0; // 强制回退
- });
- swiperData.isAllowed = false; // 重置状态
- }
- // findWordLeft(listData.activeIndex);
- centerActiveTab();
- updataShuju(listData.danyuanNumberList[listData.activeIndex]);
- }
- }
- // 处理tab点击
- function handleTabClick(index) {
- const item = listData.danyuanNumberList[index];
- if (item.lock) {
- // 弹出弹窗让用户确认是否去购买
- goPayDialogRef.value.handleShow();
- return;
- }
- listData.activeIndex = index;
- centerActiveTab();
- updataShuju(listData.danyuanNumberList[index]);
- }
- // 使激活的tab居中显示
- function centerActiveTab() {
- nextTick(() => {
- const query = uni.createSelectorQuery().in(getCurrentInstance());
- query.select('#tab-item-list').boundingClientRect();
- query.select('.tab-item.active').boundingClientRect();
- query.exec((res) => {
- if (res && res[0] && res[1]) {
- const containerWidth = res[0].width;
- const activeLeft = res[1].left - res[0].left;
- const activeWidth = res[1].width;
- const scrollLeft = activeLeft - (containerWidth / 2) + (activeWidth / 2);
-
- // 边界处理
- const finalScrollLeft = Math.max(0, scrollLeft);
-
- // 使用 uni-app 的 API 来设置滚动位置
- uni.createSelectorQuery().in(getCurrentInstance())
- .select('#tab-item-list')
- .fields({ node: true }, (result) => {
- if (result && result.node) {
- const node = result.node;
- node.scrollLeft = finalScrollLeft;
- }
- })
- .exec();
- }
- })
- });
- }
- // 返回
- function goBack() {
- uni.redirectTo({
- url: `/pages/study/index`,
- });
- }
- // 修改缓存zid 用于定位岛
- function updataCache(data) {
- cacheManager.updateObject("zhangInfo", {
- curZid: data,
- });
- }
- //tab click
- function handleTitleClick(item) {
- updataShuju(item);
- }
- // 修改数据 &&定位岛
- function updataShuju(data) {
- // 非游客
- danyuanId.value = data.danyuanId;
- // 修改缓存zid 用于定位岛
- updataCache(data.zhangZid);
- getWordListData();
- }
- // 返回节index
- function findIndexByDanyuanId(list, danyuanId) {
- const findIndex = list.findIndex((item) => item.danyuanId == danyuanId);
- // unit滚动到指定位置
- findWordLeft(findIndex);
- return findIndex;
- }
- // 获取滚动距离
- function findWordLeft(data) {
- // useActiveDomIntoView(".word-title-box", ".title-item.active");
- // 替换为 uni-app 兼容的滚动方法
- centerActiveTab();
- }
- function getWordListData() {
- const opt = {
- danyuanId: 244, // routerOpt.danyuanId
- banbenId: 39, // routerOpt.banbenId
- };
- getWordZhangList(opt)
- .then((res) => {
- if (res.code === 0) {
- listData.title = res.data.title;
- unitList.value = res.data.danyuanWordsList;
- listData.danyuanNumberList = res.data.danyuanNumberList;
- unitList.value.forEach((item) => {
- if (item.danyuanId == danyuanId.value) {
- listData.activeIndex = findIndexByDanyuanId(
- listData.danyuanNumberList,
- danyuanId.value
- );
- }
- });
- }
- })
- .catch((err) => {
- console.log('err', err)
- toast("获取单词列表数据失败");
- });
- }
- // 单词
- function toWord(data) {
- uni.redirectTo({
- url: `/pages/chaojidanci/newEnglish/index?danyuanId=${danyuanId.value}&wordId=${data.id}`,
- });
- }
- // 去支付
- function goPayPage() {
- uni.redirectTo({
- url: "/pages/chanpinShop/cp4/dingdan"
- });
- }
- </script>
|