1.16提交

This commit is contained in:
zoujiandong
2026-01-16 17:36:04 +08:00
parent 034744959f
commit d06ee397cf
4 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<template>
<view class="address-page">
<navBar :title="'收货地址'" />
<navBar :title="type==1?'收货地址':'联系邮箱'" />
<!-- <uni-nav-bar left-icon="left" title="收货地址" fixed color="#8B2316" height="180rpx" :border="false" backgroundColor="#ffffff" @clickLeft="goBack" /> -->
<scroll-view scroll-y class="content">
+2 -2
View File
@@ -16,7 +16,7 @@
<scroll-view scroll-y class="detail-scroll">
<!-- 商品主图轮播 -->
<view class="swiper-box">
<swiper class="detail-swiper" :indicator-dots="true" :autoplay="true" :interval="5000" :duration="400" indicator-color="#ccc" indicator-active-color="#8B2316">
<swiper class="detail-swiper" :indicator-dots="true" :autoplay="images.length > 1 ? true : false" :interval="5000" :duration="400" indicator-color="#ccc" indicator-active-color="#8B2316" :circular="true">
<swiper-item v-for="(img, idx) in images" :key="idx">
<image class="swiper-image" :src="img" mode="aspectFit"></image>
</swiper-item>
@@ -25,7 +25,7 @@
<!-- 标题与价格、销量 -->
<view class="summary">
<view class="title">[包邮]{{ product.title }}</view>
<view class="title"><text v-if="product.type == 1">[包邮]</text>{{ product.title }}</view>
<view class="price-row">
<text class="price">{{ product.price }}积分</text>
<text class="exchanged">已兑换{{ product.times }}件</text>