update uni-app

This commit is contained in:
全栈小学生 2023-10-10 17:05:59 +08:00
parent 1c0d75aae0
commit 8ca3fd5ff7

View File

@ -27,39 +27,6 @@
<template v-if="component.componentName == 'Text'"> <template v-if="component.componentName == 'Text'">
<diy-text :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-text> <diy-text :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-text>
</template> </template>
<template v-if="component.componentName == 'TourismHotel'">
<diy-tourism-hotel :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-hotel>
</template>
<template v-if="component.componentName == 'TourismTickets'">
<diy-tourism-tickets :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-tickets>
</template>
<template v-if="component.componentName == 'TourismTravel'">
<diy-tourism-travel :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-travel>
</template>
<template v-if="component.componentName == 'TourismHotel'">
<diy-tourism-hotel :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-hotel>
</template>
<template v-if="component.componentName == 'TourismTickets'">
<diy-tourism-tickets :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-tickets>
</template>
<template v-if="component.componentName == 'TourismTravel'">
<diy-tourism-travel :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-tourism-travel>
</template>
<template v-if="component.componentName == 'VipcardCard'">
<diy-vipcard-card :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-vipcard-card>
</template>
<template v-if="component.componentName == 'VipcardReserve'">
<diy-vipcard-reserve :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-vipcard-reserve>
</template>
<template v-if="component.componentName == 'VipcardStore'">
<diy-vipcard-store :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-vipcard-store>
</template>
<template v-if="component.componentName == 'GoodsList'">
<diy-goods-list :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-goods-list>
</template>
<template v-if="component.componentName == 'Notice'">
<diy-notice :component="component" :index="index" :pullDownRefresh="props.pullDownRefresh"></diy-notice>
</template>
</view> </view>
<template v-if="diyStore.mode == '' && data.global.bottomTabBarSwitch"> <template v-if="diyStore.mode == '' && data.global.bottomTabBarSwitch">
<view class="pt-[20rpx]"></view> <view class="pt-[20rpx]"></view>
@ -68,12 +35,6 @@
</view> </view>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import diyTourismHotel from '@/tourism/components/diy/tourism-hotel/index.vue';
import diyTourismTickets from '@/tourism/components/diy/tourism-tickets/index.vue';
import diyTourismTravel from '@/tourism/components/diy/tourism-travel/index.vue';
import diyVipcardCard from '@/vipcard/components/diy/vipcard-card/index.vue';
import diyVipcardReserve from '@/vipcard/components/diy/vipcard-reserve/index.vue';
import diyVipcardStore from '@/vipcard/components/diy/vipcard-store/index.vue';
import useDiyStore from '@/app/stores/diy'; import useDiyStore from '@/app/stores/diy';
import { onMounted, nextTick, computed, ref,watch } from 'vue'; import { onMounted, nextTick, computed, ref,watch } from 'vue';
import Sortable from 'sortablejs'; import Sortable from 'sortablejs';