| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view class="ezy-cjdc-xbb-page">
- <view class="icon-title-navBar-box">
- <view class="nav-bar-icon" @click="handleBack"></view>
- <view class="nav-bar-title">选择版本-L6</view>
- </view>
- <view class="ezy-page-body">
- <template v-if="data.banbenList.length">
- <view class="xbb-list-box">
- <ezyActiveVue class="ezy-list-item-active xbb-item-box" v-for="item in data.banbenList" :key="item.id"
- @aclick="handleSelect(item)">
- <text class="book-text">{{item.name}}</text>
- <icon class="arrow-icon"></icon>
- </ezyActiveVue>
- </view>
- <view class="ezy-no-more">没有更多</view>
- </template>
- <template v-else>
- <view class="shiti-frame-box">
- <view class="ezy-no-sj">
- <icon></icon>
- <text>暂无数据</text>
- </view>
- </view>
- </template>
- </view>
- </view>
- </template>
- <script setup>
- import {reactive} from "vue";
- import {onLoad} from "@dcloudio/uni-app"
- import * as shuxueHttp from "@/api/chanpinShuxue.js"
- 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) {
- const opt = {
- banbenId: item.id,
- }
- shuxueHttp.getShuxueChanpinBanbenSave(opt).then(res => {
- if (!res.data) { return;}
- cacheManager.get('contentInfo') && cacheManager.remove('contentInfo');
- // 跳转
- uni.switchTab({
- url: "/pages/chanpinneirong/index"
- })
- })
- }
- onLoad((options) => {
- data.dengjiId = options.dengjiId;
- getBanbenList();
- })
- </script>
- <style>
- </style>
|