This commit is contained in:
2025-03-12 11:39:31 +08:00
parent b8a44a2716
commit 55954a4a9b
125 changed files with 30973 additions and 30045 deletions

View File

@@ -5,7 +5,6 @@
>
<u-popup :show="show" v-if="show" mode="center" class="popup_box">
<div class="product_image" scroll-y="true" style="position: relative">
<swiper
:style="{ height: fullHeight }"
class="swiper-tall"
@@ -25,7 +24,7 @@
:data-year="index"
>
<view
@click="gotoDetail(img)"
@click="gotoDetail(img)"
class="swiper-item"
:style="{
background: img ? 'url(' + img.icon + ') center no-repeat' : '',
@@ -36,13 +35,26 @@
</view>
</swiper-item>
</swiper>
<view style="display: flex;align-items: center;justify-content: center;">
<view @click="close()" style="font-weight: bold;background-color: rgba(255, 255, 255, 0.8); color: #333;padding:20rpx 10rpx;width: 200rpx;font-size: 30rpx;border-radius: 40rpx;text-align: center;letter-spacing: 0.5rpx;">
关闭
</view>
<view
style="display: flex; align-items: center; justify-content: center"
>
<view
@click="close()"
style="
font-weight: bold;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
padding: 20rpx 10rpx;
width: 200rpx;
font-size: 30rpx;
border-radius: 40rpx;
text-align: center;
letter-spacing: 0.5rpx;
"
>
关闭
</view>
</view>
</div>
</u-popup></view
>