123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <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-tab-border">
- <view class="ezy-border-body">
- <view class="word-title-box">{{listData.jieName || ''}}</view>
- <view class="word-num-box"><icon></icon><text>{{listData.studyCount || 0}}/{{listData.count || 0}}词</text></view>
- <view class="word-list-body" v-if="listData.wordList && listData.wordList.length > 0">
- <!-- 单词 -->
- <view class="word-list-item" v-for="(item,index) in listData.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>
- </view>
- </view>
- </template>
- <script setup>
- import {reactive,ref} from "vue";
- import {toast} from "@/utils/common";
- import {onLoad} from "@dcloudio/uni-app";
- import {getWordList,getWordListYk} from "@/api/word.js";
- import cacheManager from '@/utils/cacheManager.js';
- const listData = reactive({
- count: 0, // 总数,默认值设为 0
- studyCount: 0, // 已学总数,默认值设为 0
- jieName: '',//节名称
- title: '', // 版本+年级+学期
- wordList: [] // 单词列表,默认值设为空数组
- });
- let routerOpt = ref(false);
- onLoad((options) => {
- console.log('options555',options);
- routerOpt = options;
- if (!cacheManager.get('auth')) {
- // 游客
- getWordListDataYk();
- } else {
- // 非游客
- getWordListData();
- }
- });
- // 返回
- function goBack(){
- if (!cacheManager.get('auth')) {
- const youkeData = JSON.parse(routerOpt.youkePageData)
- // 游客
- uni.redirectTo({
- url: `/pages/study/index?levelId=${youkeData.levelId}&typeId=${youkeData.typeId}&subjectId=${youkeData.subjectId}&tipFlag=${youkeData.tipFlag}&youkeZhangId=${youkeData.youkeZhangId}&jieId=${youkeData.jieId}`
- })
- } else {
- // 非游客
- uni.redirectTo({
- url: `/pages/study/index`
- })
- }
-
- }
- function getWordListData() {
- const opt = {
- jieId: routerOpt.jieId
- };
- getWordList(opt).then(res => {
- if (res.code === 0) {
- listData.count = res.data.count;
- listData.studyCount = res.data.studyCount;
- listData.jieName = res.data.jieName;
- listData.title = res.data.title;
- listData.wordList = res.data.wordList;
- }
- }).catch(err => {
- toast("获取单词列表数据失败");
- });
- }
- function getWordListDataYk() {
- const youkeData = JSON.parse(routerOpt.youkePageData)
- const opt = {
- jieId: youkeData.jieId
- };
- getWordListYk(opt).then(res => {
- if (res.code === 0) {
- listData.count = res.data.count;
- listData.studyCount = res.data.studyCount;
- listData.jieName = res.data.jieName;
- listData.title = res.data.title;
- listData.wordList = res.data.wordList;
- }
- }).catch(err => {
- toast("获取单词列表数据失败");
- });
- }
- // 单词
- function toWord(data){
- if (!cacheManager.get('auth')) {
- // 游客
- const youkeData = JSON.parse(routerOpt.youkePageData)
- uni.redirectTo({
- url: `/pages/newEnglish/index?jieId=${youkeData.jieId}&wordId=${data.id}&levelId=${youkeData.levelId}&typeId=${youkeData.typeId}&subjectId=${youkeData.subjectId}&tipFlag=${youkeData.tipFlag}&youkeZhangId=${youkeData.youkeZhangId}`
- })
- } else {
- // 非游客
- uni.redirectTo({
- url: `/pages/newEnglish/index?jieId=${routerOpt.jieId}&wordId=${data.id}`
- })
- }
- }
- </script>
|