| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view class="ezy-xbb-page">
- <view class="icon-title-navBar-box">
- <view class="nav-bar-icon" @click="handleBack"></view>
- <view class="nav-bar-title">选择版本</view>
- </view>
- <view class="xbb-list-box">
- <template v-if="data.banbenList.length">
- <ezyActiveVue class="ezy-list-item-active xbb-item-box" v-for="item in data.banbenList" :key="item.id" @aclick="handleSelect(item)">
- <!-- 封面 -->
- <image class="item-img-box" :src="item.cover" mode=""></image>
- <view class="item-content-box">
- <!-- 名称+等级 -->
- <view class="item-name">{{item.chanpinName}} {{item.dengjiName}}</view>
- <!-- 版本名称 -->
- <view class="item-bb">{{item.name}}</view>
- </view>
- <view class="item-play-btn"></view>
- </ezyActiveVue>
- </template>
- <template v-else>
- <view class="shiti-frame-box">
- <view class="ezy-no-sj">
- <icon></icon>
- <text>暂无数据</text>
- </view>
- </view>
- </template>
- </view>
- <!-- <CustomTabBar :currentTabNumber="0"></CustomTabBar> -->
- </view>
- </template>
- <script setup>
- import {reactive} from "vue";
- import {onLoad} from "@dcloudio/uni-app"
- import * as shuxueHttp from "@/api/chanpinShuxue.js"
- // import CustomTabBar from "@/components/custom-tabbar/custom-tabbar.vue";
- import cacheManager from "@/utils/cacheManager.js";
- import ezyActiveVue from "@/components/ezyActive/ezyActive.vue";
- const data = reactive({
- dengjiId: null,
- banbenList: []
- })
- function getBanbenList() {
- shuxueHttp.getShuxueChanpinBanbenList({dengjiId: data.dengjiId}).then(res => {
- data.banbenList = res.data;
- })
- }
- function handleBack() {
- uni.switchTab({
- url: `/pages/chanpinXuanze/index`
- })
- }
- function handleSelect(item) {
- if (cacheManager.get('xuexi-shuxue')) {
- console.log('清除xuexi-shuxuexuexi-shuxue');
- cacheManager.remove("xuexi-shuxue")
- }
- /* uni.redirectTo({
- url: `/pages/chanpinneirong/index?banbenId=${item.id}&danyuanId=1&customType=3&chanpinId=${item.chanpinId}&dengjiId=${item.dengjiId}`
- }) */
- const opt = {
- banbenId: item.id,
- danyuanId:1, // 测试需要固定为 1
- chanpinId:item.chanpinId,
- dengjiId: item.dengjiId
- }
- cacheManager.updateObject("auth",{
- banbenId:item.id,
- chanpinId:item.chanpinId,
- dengjiId:item.dengjiId,
- })
- // 跳转
- uni.switchTab({
- url: "/pages/chanpinneirong/index"
- })
- }
- onLoad((options) => {
- data.dengjiId = options.dengjiId;
- getBanbenList();
- })
- </script>
- <style>
- </style>
|