From f12fb1012d7977e58c115a4f7865b9db52f81a7e Mon Sep 17 00:00:00 2001
From: lifizer <913626195@qq.com>
Date: Fri, 14 Nov 2025 17:55:45 +0800
Subject: [PATCH 01/78] =?UTF-8?q?Feat(=E9=9D=9E=E9=81=97=E6=96=87=E5=88=9B?=
=?UTF-8?q?):=E5=A2=9E=E5=8A=A0AI=E5=85=A5=E5=8F=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/heritage/index.vue | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pkg_product/views/heritage/index.vue b/pkg_product/views/heritage/index.vue
index 2f3abd6..7cc81eb 100644
--- a/pkg_product/views/heritage/index.vue
+++ b/pkg_product/views/heritage/index.vue
@@ -87,12 +87,17 @@
class="img-nodata"
/>
+
\ No newline at end of file
From efd70ae003aa5c8e0fe3f46735327eb3eb55ca9a Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Sat, 22 Nov 2025 15:15:13 +0800
Subject: [PATCH 30/78] =?UTF-8?q?Feat=EF=BC=9A=E5=9B=A2=E8=B4=AD=E7=A4=BC?=
=?UTF-8?q?=E5=93=81=E6=94=AF=E6=8C=81=E4=BC=98=E6=83=A0=E5=88=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/gift.js | 12 +++++++++
pkg_user/views/gift/gift.vue | 47 +++++++++++++++++++++++++-----------
2 files changed, 45 insertions(+), 14 deletions(-)
diff --git a/api/gift.js b/api/gift.js
index 1963088..3f33c62 100644
--- a/api/gift.js
+++ b/api/gift.js
@@ -112,3 +112,15 @@ export function fetchSojoumGroupBuyGiftCarousel(params) {
login: true
})
}
+
+/**
+ * 计算旅居团购礼品订单价格
+ * @param {*} params
+ * @returns
+ */
+
+export function computedSojoumGroupBuyGiftOrderPrice(params) {
+ return request.post("/travel/giftCardOrder/computed/" + params.key, params, {
+ login: true
+ })
+}
diff --git a/pkg_user/views/gift/gift.vue b/pkg_user/views/gift/gift.vue
index c306cd4..ffc34d5 100644
--- a/pkg_user/views/gift/gift.vue
+++ b/pkg_user/views/gift/gift.vue
@@ -81,7 +81,7 @@
{{ isGroupBuy ? goodsInfo.price : computedResult.totalPrice }}
-
+
平台折扣:
-
@@ -89,7 +89,7 @@
{{ computedResult.discountPrice }}
-
+
优惠券:
@@ -111,7 +111,7 @@
合计:
¥
- {{ isGroupBuy ? goodsInfo.price : computedResult.payPrice }}
+ {{ computedResult.payPrice }}
@@ -146,7 +146,7 @@
ref='payPwdPop'
showMoney
v-if="isShowPayPwdPop"
- :money="isGroupBuy ? goodsInfo.price : payPrice"
+ :money="payPrice"
:show="isShowPayPwdPop"
@close="isShowPayPwdPop = false"
@finish="pwdPopFinish"
@@ -186,7 +186,8 @@ import {
getGiftCardResend,
createGroupBuyGift,
createSojoumGroupBuyGift,
- fetchSojoumGroupBuyGiftCarousel
+ fetchSojoumGroupBuyGiftCarousel,
+ computedSojoumGroupBuyGiftOrderPrice
} from '@/api/gift'
import { weappPay } from "@/libs/wechat";
import {mapGetters} from "vuex";
@@ -249,7 +250,11 @@ export default {
async couponId(value) {
this.couponIndex = this.couponList['usable']?.findIndex(item => item.id === +value)
this.couponTitle = this.couponList['usable']?.[this.couponIndex]?.couponTitle
- await this.computedPrice(this.goodsInfo.cartNum, 1)
+ if(this.isGroupBuy) {
+ await this.computedTravelGroupPrice(true)
+ } else {
+ await this.computedPrice(this.goodsInfo.cartNum, 1)
+ }
}
},
onLoad(opts) {
@@ -284,14 +289,23 @@ export default {
imageUrl: this.shareImage
}
},
- // onReady() {
- // this.$nextTick(() => {
- // this.$refs.textarea.setFormatter(val => {
- // return val.length > 30 ? val.substring(0, 30) : val
- // })
- // })
- // },
methods: {
+ // 团购价计算
+ computedTravelGroupPrice(useDefaultCouponId) {
+ const params = {
+ key: this.orderKey,
+ couponId: this.couponId
+ }
+ computedSojoumGroupBuyGiftOrderPrice(params).then(res => {
+ this.computedResult = res.data.result
+ this.couponList = res.data.result.couponList
+ this.payPrice = res.data.result.payPrice
+ this.$forceUpdate()
+ if(useDefaultCouponId) {
+ this.couponId = res.data.result.defaultCouponId || 0
+ }
+ })
+ },
handleShowCover() {
this.showCoverPicker = true
},
@@ -310,7 +324,11 @@ export default {
if(!item.id) {
this.couponId = 0
this.couponTitle = ''
- this.computedPrice(this.goodsInfo.cartNum, 1)
+ if(this.isGroupBuy) {
+ this.computedTravelGroupPrice(false)
+ } else {
+ this.computedPrice(this.goodsInfo.cartNum, 1)
+ }
return
}
this.couponId = item.id
@@ -576,6 +594,7 @@ export default {
}
}
this.giftNotice = res.data.giftCardGiftNotice
+ this.computedTravelGroupPrice(true)
}
})
}
From d43fc253c93189df923b357c9f8261d207a7c2b5 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Sat, 22 Nov 2025 15:22:46 +0800
Subject: [PATCH 31/78] =?UTF-8?q?Fix=EF=BC=9A4646=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E7=A4=BC=E5=8C=85=E9=80=80=E6=AC=BE=E5=90=8E?=
=?UTF-8?q?=EF=BC=8C=E6=94=B6=E7=A4=BC=E6=96=B9=E9=A2=86=E5=8F=96=E6=97=B6?=
=?UTF-8?q?=E7=9A=84=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF=E6=94=B9=E4=B8=BA?=
=?UTF-8?q?=E2=80=9C=E7=A4=BC=E5=93=81=E5=8D=A1=E5=B7=B2=E5=A4=B1=E6=95=88?=
=?UTF-8?q?=E2=80=9D=EF=BC=88iOS=E9=9C=80=E4=BF=AE=E6=94=B9=E6=8F=90?=
=?UTF-8?q?=E7=A4=BA=EF=BC=8C=E5=AE=89=E5=8D=93=E9=9C=80=E5=A2=9E=E5=8A=A0?=
=?UTF-8?q?=E6=8F=90=E7=A4=BA=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/components/GiftCard.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg_user/views/gift/components/GiftCard.vue b/pkg_user/views/gift/components/GiftCard.vue
index 884f1d0..3038f77 100644
--- a/pkg_user/views/gift/components/GiftCard.vue
+++ b/pkg_user/views/gift/components/GiftCard.vue
@@ -271,11 +271,11 @@ export default {
uni.reLaunch({ url: '/pkg_user/views/gift/receiveDone?obj=' + JSON.stringify(res.data) })
}).catch(() => {
uni.showToast({
- title: '领取失败,请重试',
+ title: '礼品卡已失效',
icon: 'none'
});
}).finally(() => {
- uni.hideLoading();
+ // uni.hideLoading();
});
},
async showTips() {
From b2121e71efef99c60e77c573b8e83ec5484dfd6c Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Sat, 22 Nov 2025 15:59:16 +0800
Subject: [PATCH 32/78] =?UTF-8?q?Fix=EF=BC=9A4628=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E8=AE=A2=E5=8D=95=E6=8F=90=E4=BA=A4=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2=E2=80=94=E2=80=94=E8=BE=93=E5=85=A5=E6=A1=86=E5=86=85?=
=?UTF-8?q?=E5=AE=B9=EF=BC=8C=E6=9C=AA=E5=9B=BA=E5=AE=9A=E4=BD=8D=E7=BD=AE?=
=?UTF-8?q?=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/submitOrder.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg_product/views/submitOrder.vue b/pkg_product/views/submitOrder.vue
index ec8de6c..c2dd0ca 100644
--- a/pkg_product/views/submitOrder.vue
+++ b/pkg_product/views/submitOrder.vue
@@ -1,6 +1,6 @@
-
+
@@ -91,7 +91,7 @@
-
+
From aaa29ef0f65a98b4c830d03b2171f35e74164fb3 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Sat, 22 Nov 2025 16:09:49 +0800
Subject: [PATCH 33/78] =?UTF-8?q?Feat=EF=BC=9A=E9=A6=96=E9=A1=B5=E7=94=84?=
=?UTF-8?q?=E9=80=89=E5=A5=BD=E7=A4=BC=E8=BD=AE=E6=92=AD=E6=95=88=E6=9E=9C?=
=?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/home/index.vue | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/pages/home/index.vue b/pages/home/index.vue
index 198c1e5..b6f6d85 100644
--- a/pages/home/index.vue
+++ b/pages/home/index.vue
@@ -1572,11 +1572,15 @@ export default {
\ No newline at end of file
From b65301baa224114583eed4111c3468d73d13f9f9 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 09:55:27 +0800
Subject: [PATCH 45/78] =?UTF-8?q?Fix=EF=BC=9A4651=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E8=AF=A6=E6=83=85=E9=A1=B5=E5=BA=95=E9=83=A8?=
=?UTF-8?q?=E4=BA=A4=E4=BA=92=E6=8C=89=E9=92=AE=E5=8C=BA=E5=9F=9F=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/groupBuyDetails.vue | 2 +-
pkg_product/views/sojoumOrderDetails.vue | 2 +-
pkg_product/views/submitOrder.vue | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pkg_product/views/groupBuyDetails.vue b/pkg_product/views/groupBuyDetails.vue
index f32d552..649bc1d 100644
--- a/pkg_product/views/groupBuyDetails.vue
+++ b/pkg_product/views/groupBuyDetails.vue
@@ -625,7 +625,7 @@ export default {
.val { color: #666; text-align: right; }
.gallery-img { width: 100%; margin-bottom: 16rpx; border-radius: 12rpx; overflow: hidden; }
.bottom-space { height: 140rpx; }
-.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 16rpx 24rpx; }
+.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 26rpx 24rpx; }
.total { font-size: 30rpx; color: #111; font-weight: 700; }
.bar-actions { display: flex; gap: 16rpx; }
.mini-btn {
diff --git a/pkg_product/views/sojoumOrderDetails.vue b/pkg_product/views/sojoumOrderDetails.vue
index a2f98d3..f41a564 100644
--- a/pkg_product/views/sojoumOrderDetails.vue
+++ b/pkg_product/views/sojoumOrderDetails.vue
@@ -557,7 +557,7 @@ export default {
left: 0;
right: 0;
background-color: #fff;
- padding: 20rpx 30rpx;
+ padding: 26rpx 30rpx;
display: flex;
justify-content: space-between;
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
diff --git a/pkg_product/views/submitOrder.vue b/pkg_product/views/submitOrder.vue
index a18956f..55174b2 100644
--- a/pkg_product/views/submitOrder.vue
+++ b/pkg_product/views/submitOrder.vue
@@ -434,7 +434,7 @@ export default {
.text-card .plain-text { font-size: 26rpx; color: #666; line-height: 40rpx; letter-spacing: 2px;}
.bottom-space { height: 140rpx; }
-.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 16rpx 24rpx; }
+.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 26rpx 24rpx; }
.total { font-size: 30rpx; color: #111; font-weight: 700; }
.total .highlight { color: #C52733; font-weight: 700; }
.bar-actions { display: flex; gap: 16rpx; }
From 824a9f93de6155d6cb9a71810b134f6fd8929647 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 10:18:43 +0800
Subject: [PATCH 46/78] =?UTF-8?q?Fix=EF=BC=9A4655=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9C=A8=E9=A6=96=E9=A1=B5=E7=86=84=E5=B1=8F=E6=88=96=E5=88=87?=
=?UTF-8?q?=E6=8D=A2=E8=BD=AF=E4=BB=B610=E7=A7=92=E9=92=9F=E4=BB=A5?=
=?UTF-8?q?=E4=B8=8A=EF=BC=8C=E7=94=84=E9=80=89=E5=A5=BD=E7=A4=BC=E8=BD=AE?=
=?UTF-8?q?=E6=92=AD=E5=95=86=E5=93=81=E4=BC=9A=E5=87=BA=E7=8E=B0=E5=BC=82?=
=?UTF-8?q?=E5=B8=B8=E6=8A=96=E5=8A=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/home/index.vue | 32 +++++++++++++++++++++++++++++---
1 file changed, 29 insertions(+), 3 deletions(-)
diff --git a/pages/home/index.vue b/pages/home/index.vue
index c6fd564..a2f9875 100644
--- a/pages/home/index.vue
+++ b/pages/home/index.vue
@@ -45,6 +45,8 @@
autoplay
circular
style="height: 510rpx;"
+ :duration="500"
+ @animationfinish="bindSwiperInstance($event, 'banner')"
>
-
-
+
+
@@ -301,6 +305,8 @@
circular
autoplay
:interval="3000"
+ :duration="500"
+ @animationfinish="bindSwiperInstance($event, 'productSwiper')"
>
{
+ swiper && swiper.autoplayStart && swiper.autoplayStart()
+ })
+ },
+ // 页面隐藏时暂停轮播
+ pageToHideHandle() {
+ // 暂停所有轮播组件的自动播放
+ Object.values(this.swiperInstances).forEach(swiper => {
+ swiper && swiper.autoplayStop && swiper.autoplayStop()
+ })
+ },
+ // 绑定轮播组件实例
+ bindSwiperInstance(e, key) {
+ this.swiperInstances[key] = e.detail
+ },
changeRecommendKeyword(e) {
this.keywordIndex = e
},
From 642139d0a22e7713a7dcb8e9bb70041f76456847 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 10:23:47 +0800
Subject: [PATCH 47/78] =?UTF-8?q?Fix=EF=BC=9A4658=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?iOS=E7=AB=AF=E7=9A=84=E8=BD=AE=E6=92=AD=E5=95=86=E5=93=81?=
=?UTF-8?q?=E5=90=8D=E7=A7=B0=E3=80=81=E4=BB=B7=E6=A0=BC=E4=BB=A5=E5=8F=8A?=
=?UTF-8?q?=E9=80=89=E8=B4=AD=E6=8C=89=E9=92=AE=E4=BD=8D=E7=BD=AE=E6=95=B4?=
=?UTF-8?q?=E4=BD=93=E4=B8=8A=E8=B0=83=E4=B8=80=E7=82=B9=EF=BC=8C=E6=8C=89?=
=?UTF-8?q?=E9=92=AE=E4=B8=8B=E6=96=B9=E7=95=99=E7=82=B9=E7=A9=BA=E7=99=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/home/newZone.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pages/home/newZone.vue b/pages/home/newZone.vue
index 3e05d90..0ca0d56 100644
--- a/pages/home/newZone.vue
+++ b/pages/home/newZone.vue
@@ -11,7 +11,7 @@
-->
-
+
@@ -154,7 +154,7 @@ export default{
display: flex;
align-items: center;
flex-direction: column;
- padding: 20rpx 20rpx 0 20rpx;
+ padding: 20rpx;
}
.box-emp{
width: 100%;
@@ -177,7 +177,7 @@ export default{
}
.new-card{
width: 220rpx;
- height: 240rpx;
+ // height: 240rpx;
background: #fff;
border-radius: 20rpx;
position: absolute;
From b53e2d1eaafff2f80a1ebd6a42183e1ab36a6585 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 11:05:28 +0800
Subject: [PATCH 48/78] =?UTF-8?q?Fix=EF=BC=9A4655=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9C=A8=E9=A6=96=E9=A1=B5=E7=86=84=E5=B1=8F=E6=88=96=E5=88=87?=
=?UTF-8?q?=E6=8D=A2=E8=BD=AF=E4=BB=B610=E7=A7=92=E9=92=9F=E4=BB=A5?=
=?UTF-8?q?=E4=B8=8A=EF=BC=8C=E7=94=84=E9=80=89=E5=A5=BD=E7=A4=BC=E8=BD=AE?=
=?UTF-8?q?=E6=92=AD=E5=95=86=E5=93=81=E4=BC=9A=E5=87=BA=E7=8E=B0=E5=BC=82?=
=?UTF-8?q?=E5=B8=B8=E6=8A=96=E5=8A=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/home/index.vue | 36 ++++++++++++++++++++++++++----------
1 file changed, 26 insertions(+), 10 deletions(-)
diff --git a/pages/home/index.vue b/pages/home/index.vue
index a2f9875..1b599d2 100644
--- a/pages/home/index.vue
+++ b/pages/home/index.vue
@@ -189,7 +189,7 @@
-
+
@@ -459,7 +459,13 @@ export default {
shareData: {},
currentIndex: 0,
// 轮播组件实例
- swiperInstances: {}
+ swiperInstances: {
+ productSwiper: true,
+ homestay: true,
+ banner: true,
+ festival: true,
+ newZone: true,
+ }
}
},
onLoad() {
@@ -487,6 +493,9 @@ export default {
}
})
},
+ onShow() {
+ this.pageToShowHandle()
+ },
onHide() {
this.pageToHideHandle()
},
@@ -511,20 +520,27 @@ export default {
// 页面显示时恢复轮播
pageToShowHandle() {
// 恢复所有轮播组件的自动播放
- Object.values(this.swiperInstances).forEach(swiper => {
- swiper && swiper.autoplayStart && swiper.autoplayStart()
- })
+ this.swiperInstances = {
+ productSwiper: true,
+ homestay: true,
+ banner: true,
+ festival: true,
+ newZone: true,
+ }
},
// 页面隐藏时暂停轮播
pageToHideHandle() {
- // 暂停所有轮播组件的自动播放
- Object.values(this.swiperInstances).forEach(swiper => {
- swiper && swiper.autoplayStop && swiper.autoplayStop()
- })
+ this.swiperInstances = {
+ productSwiper: false,
+ homestay: false,
+ banner: false,
+ festival: false,
+ newZone: false,
+ }
},
// 绑定轮播组件实例
bindSwiperInstance(e, key) {
- this.swiperInstances[key] = e.detail
+ // this.swiperInstances[key] = e.detail
},
changeRecommendKeyword(e) {
this.keywordIndex = e
From d7864d3a384ec65cad106cbd305b9cbfa161ee9e Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 17:21:57 +0800
Subject: [PATCH 49/78] =?UTF-8?q?Fix=EF=BC=9A4664=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E9=80=89=E6=8B=A9=E5=85=B6=E4=BB=96=E4=BC=98?=
=?UTF-8?q?=E6=83=A0=E5=88=B8=E6=97=A0=E6=B3=95=E7=94=9F=E6=95=88=EF=BC=8C?=
=?UTF-8?q?=E9=80=89=E6=8B=A9=E4=BB=A5=E5=90=8E=E5=8F=88=E8=87=AA=E5=8A=A8?=
=?UTF-8?q?=E6=94=B9=E5=9B=9E=E9=BB=98=E8=AE=A4=E7=9A=84=E4=BC=98=E6=83=A0?=
=?UTF-8?q?=E5=88=B8=E4=BA=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/gift.vue | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/pkg_user/views/gift/gift.vue b/pkg_user/views/gift/gift.vue
index b5df128..c8abdee 100644
--- a/pkg_user/views/gift/gift.vue
+++ b/pkg_user/views/gift/gift.vue
@@ -251,7 +251,7 @@ export default {
this.couponIndex = this.couponList['usable']?.findIndex(item => item.id === +value)
this.couponTitle = this.couponList['usable']?.[this.couponIndex]?.couponTitle
if(this.isGroupBuy) {
- await this.computedTravelGroupPrice(true)
+ await this.computedTravelGroupPrice(false)
} else {
await this.computedPrice(this.goodsInfo.cartNum, 1)
}
@@ -333,7 +333,11 @@ export default {
}
this.couponId = item.id
this.couponTitle = item.couponTitle
- this.computedPrice(this.goodsInfo.cartNum, 1)
+ if(this.isGroupBuy) {
+ this.computedTravelGroupPrice(false)
+ } else {
+ this.computedPrice(this.goodsInfo.cartNum, 1)
+ }
},
makeAgain() {
const params = {
From 5204db106de6ca44ac0bf8a09408524084c1189e Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 25 Nov 2025 17:22:10 +0800
Subject: [PATCH 50/78] =?UTF-8?q?Fix=EF=BC=9A4665=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=95=86=E5=93=81=E3=80=81=E6=97=85=E5=B1=85=E5=9B=A2=E8=B4=AD?=
=?UTF-8?q?=E9=80=81=E7=A4=BC=EF=BC=9A=E7=82=B9=E5=87=BB=E5=B0=81=E9=9D=A2?=
=?UTF-8?q?=E9=80=89=E6=8B=A9=E5=BC=B9=E7=AA=97=E5=A4=96=E7=9A=84=E5=8C=BA?=
=?UTF-8?q?=E5=9F=9F=EF=BC=8C=E6=97=A0=E6=B3=95=E5=B0=86=E5=BC=B9=E7=AA=97?=
=?UTF-8?q?=E6=94=B6=E8=B5=B7=EF=BC=88=E6=94=B9=E4=B8=BA=EF=BC=9A=E2=91=A0?=
=?UTF-8?q?=E5=8F=AF=E4=BB=A5=E6=94=B6=E8=B5=B7=E5=BC=B9=E7=AA=97=EF=BC=8C?=
=?UTF-8?q?=E2=91=A1=E7=82=B9=E5=A4=96=E9=9D=A2=E6=94=B6=E8=B5=B7=E5=BC=B9?=
=?UTF-8?q?=E7=AA=97=E6=97=B6=EF=BC=8C=E5=8F=96=E6=B6=88=E4=BF=9D=E5=AD=98?=
=?UTF-8?q?=E6=96=B0=E9=80=89=E6=8B=A9=E7=9A=84=E5=B0=81=E9=9D=A2=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/components/CoverPicker.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/pkg_user/views/gift/components/CoverPicker.vue b/pkg_user/views/gift/components/CoverPicker.vue
index 4db8ab2..9917436 100644
--- a/pkg_user/views/gift/components/CoverPicker.vue
+++ b/pkg_user/views/gift/components/CoverPicker.vue
@@ -4,6 +4,7 @@
mode="bottom"
round="40rpx"
:customStyle="{height: '600rpx'}"
+ @close="close"
>
Date: Tue, 25 Nov 2025 17:29:12 +0800
Subject: [PATCH 51/78] =?UTF-8?q?Fix=EF=BC=9A4651=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E8=AF=A6=E6=83=85=E9=A1=B5=E5=BA=95=E9=83=A8?=
=?UTF-8?q?=E4=BA=A4=E4=BA=92=E6=8C=89=E9=92=AE=E5=8C=BA=E5=9F=9F=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
manifest.json | 1 +
pkg_product/views/groupBuyDetails.vue | 16 ++++++++++++++--
pkg_product/views/submitOrder.vue | 15 ++++++++++++++-
3 files changed, 29 insertions(+), 3 deletions(-)
diff --git a/manifest.json b/manifest.json
index 9b381af..b482ced 100644
--- a/manifest.json
+++ b/manifest.json
@@ -5,6 +5,7 @@
"versionName" : "4.0.0",
"versionCode" : 4,
"transformPx" : false,
+ "sassImplementationName" : "node-sass",
/* 5+App特有相关 */
"app-plus" : {
"usingComponents" : true,
diff --git a/pkg_product/views/groupBuyDetails.vue b/pkg_product/views/groupBuyDetails.vue
index 649bc1d..be00bc1 100644
--- a/pkg_product/views/groupBuyDetails.vue
+++ b/pkg_product/views/groupBuyDetails.vue
@@ -509,7 +509,20 @@ export default {
.val { color: #666; text-align: right; }
.gallery-img { width: 100%; margin-bottom: 16rpx; border-radius: 12rpx; overflow: hidden; }
.bottom-space { height: 140rpx; }
-.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 16rpx 24rpx; }
+.bottom-bar {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: #fff;
+ border-top: 1rpx solid #eee;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0 20rpx 20rpx 30rpx;
+ height: 140rpx;
+ box-sizing: border-box;
+}
.total { font-size: 30rpx; color: #111; font-weight: 700; }
.bar-actions { display: flex; gap: 16rpx; }
.mini-btn {
@@ -625,7 +638,6 @@ export default {
.val { color: #666; text-align: right; }
.gallery-img { width: 100%; margin-bottom: 16rpx; border-radius: 12rpx; overflow: hidden; }
.bottom-space { height: 140rpx; }
-.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 26rpx 24rpx; }
.total { font-size: 30rpx; color: #111; font-weight: 700; }
.bar-actions { display: flex; gap: 16rpx; }
.mini-btn {
diff --git a/pkg_product/views/submitOrder.vue b/pkg_product/views/submitOrder.vue
index 55174b2..be74950 100644
--- a/pkg_product/views/submitOrder.vue
+++ b/pkg_product/views/submitOrder.vue
@@ -434,7 +434,20 @@ export default {
.text-card .plain-text { font-size: 26rpx; color: #666; line-height: 40rpx; letter-spacing: 2px;}
.bottom-space { height: 140rpx; }
-.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1rpx solid #eee; display: flex; align-items: center; justify-content: space-between; padding: 26rpx 24rpx; }
+.bottom-bar {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: #fff;
+ border-top: 1rpx solid #eee;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0 20rpx 20rpx 30rpx;
+ height: 140rpx;
+ box-sizing: border-box;
+}
.total { font-size: 30rpx; color: #111; font-weight: 700; }
.total .highlight { color: #C52733; font-weight: 700; }
.bar-actions { display: flex; gap: 16rpx; }
From 677bf57d05aaabbee7837569c0111d1675fc41cb Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Wed, 26 Nov 2025 10:30:56 +0800
Subject: [PATCH 52/78] =?UTF-8?q?Fix=EF=BC=9A4665=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=95=86=E5=93=81=E3=80=81=E6=97=85=E5=B1=85=E5=9B=A2=E8=B4=AD?=
=?UTF-8?q?=E9=80=81=E7=A4=BC=EF=BC=9A=E7=82=B9=E5=87=BB=E5=B0=81=E9=9D=A2?=
=?UTF-8?q?=E9=80=89=E6=8B=A9=E5=BC=B9=E7=AA=97=E5=A4=96=E7=9A=84=E5=8C=BA?=
=?UTF-8?q?=E5=9F=9F=EF=BC=8C=E6=97=A0=E6=B3=95=E5=B0=86=E5=BC=B9=E7=AA=97?=
=?UTF-8?q?=E6=94=B6=E8=B5=B7=EF=BC=88=E6=94=B9=E4=B8=BA=EF=BC=9A=E2=91=A0?=
=?UTF-8?q?=E5=8F=AF=E4=BB=A5=E6=94=B6=E8=B5=B7=E5=BC=B9=E7=AA=97=EF=BC=8C?=
=?UTF-8?q?=E2=91=A1=E7=82=B9=E5=A4=96=E9=9D=A2=E6=94=B6=E8=B5=B7=E5=BC=B9?=
=?UTF-8?q?=E7=AA=97=E6=97=B6=EF=BC=8C=E5=8F=96=E6=B6=88=E4=BF=9D=E5=AD=98?=
=?UTF-8?q?=E6=96=B0=E9=80=89=E6=8B=A9=E7=9A=84=E5=B0=81=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/components/CoverPicker.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/pkg_user/views/gift/components/CoverPicker.vue b/pkg_user/views/gift/components/CoverPicker.vue
index 9917436..3c5587c 100644
--- a/pkg_user/views/gift/components/CoverPicker.vue
+++ b/pkg_user/views/gift/components/CoverPicker.vue
@@ -79,6 +79,7 @@ export default {
},
methods: {
close() {
+ this.currentIndex = 0
this.$emit('update:show', false)
},
onChange(e) {
From b82dc02177510b762b7198cfad064d176b36b51f Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Wed, 26 Nov 2025 10:45:04 +0800
Subject: [PATCH 53/78] =?UTF-8?q?Fix=EF=BC=9A4663=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E6=97=A0=E6=B3=95=E6=90=9C=E7=B4=A2=E5=88=B0=E5=AF=B9=E5=BA=94?=
=?UTF-8?q?=E6=97=85=E5=B1=85=E5=95=86=E6=88=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/healthSearch.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pkg_product/views/healthSearch.vue b/pkg_product/views/healthSearch.vue
index 4dcc2e4..8ce5df0 100644
--- a/pkg_product/views/healthSearch.vue
+++ b/pkg_product/views/healthSearch.vue
@@ -45,6 +45,7 @@
+
+
\ No newline at end of file
diff --git a/pkg_product/views/sojoumStore.vue b/pkg_product/views/sojoumStore.vue
index dfbf196..c055bec 100644
--- a/pkg_product/views/sojoumStore.vue
+++ b/pkg_product/views/sojoumStore.vue
@@ -303,7 +303,7 @@
- {{ item.desc }}
+ {{ item.desc }}
{{ tag }}
From 7485208d312682dfcee98a8d35a41a81e4c3f310 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Fri, 5 Dec 2025 12:02:15 +0800
Subject: [PATCH 71/78] =?UTF-8?q?Fix=EF=BC=9A4692=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=BA=97=E9=93=BA=E5=B0=81=E9=9D=A2=E4=B8=BA=E8=A7=86=E9=A2=91?=
=?UTF-8?q?=EF=BC=8C=E5=BA=97=E9=93=BA=E5=85=A5=E5=8F=A3=E5=9B=BE=E5=9C=A8?=
=?UTF-8?q?=E5=BA=B7=E5=85=BB=E5=88=97=E8=A1=A8=E4=B8=AD=E4=B8=8D=E6=98=BE?=
=?UTF-8?q?=E7=A4=BA=EF=BC=88=E5=AE=89=E5=8D=93=E6=89=8B=E6=9C=BA=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/healthSanctum.vue | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/pkg_product/views/healthSanctum.vue b/pkg_product/views/healthSanctum.vue
index a99ba08..2e2dbf3 100644
--- a/pkg_product/views/healthSanctum.vue
+++ b/pkg_product/views/healthSanctum.vue
@@ -43,8 +43,7 @@
-
-
+
+
Date: Fri, 5 Dec 2025 12:09:11 +0800
Subject: [PATCH 72/78] =?UTF-8?q?Fix=EF=BC=9A4690=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E9=80=81=E7=A4=BC=E6=96=B9=E7=A4=BC=E5=8C=85=E8=AE=A2=E5=8D=95?=
=?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E5=A2=9E=E5=8A=A0=E5=9B=A2=E8=B4=AD?=
=?UTF-8?q?=E6=80=BB=E4=BB=B7=E3=80=81=E6=BB=A1=E5=87=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/sojoumOrderDetails.vue | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/pkg_product/views/sojoumOrderDetails.vue b/pkg_product/views/sojoumOrderDetails.vue
index 8cbcefa..b1dd6b6 100644
--- a/pkg_product/views/sojoumOrderDetails.vue
+++ b/pkg_product/views/sojoumOrderDetails.vue
@@ -45,7 +45,16 @@
-
+
+
+ 团购总价
+ ¥{{orderInfo.travelGroupOrderInfo.travelGroupProduct.price}}
+
+
+ 满减优惠
+ ¥{{orderInfo.discountPrice}}
+
+
核销码:{{orderInfo.verifyCode}}
From 23491dab19f667f3b8c36a8f3649e6382ed591ee Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Fri, 5 Dec 2025 18:24:51 +0800
Subject: [PATCH 73/78] =?UTF-8?q?Fix=EF=BC=9A4709=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=9B=A2=E8=B4=AD=E7=A4=BC=E5=8C=85=E8=AE=A2=E5=8D=95=E8=AF=A6?=
=?UTF-8?q?=E6=83=85=E9=A1=B5=EF=BC=9A=E2=80=9C=E6=BB=A1=E5=87=8F=E4=BC=98?=
=?UTF-8?q?=E6=83=A0=E2=80=9D=E6=9C=AA=E8=8E=B7=E5=8F=96=E5=88=B0=E4=BC=98?=
=?UTF-8?q?=E6=83=A0=E5=88=B8=E9=87=91=E9=A2=9D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/sojoumOrderDetails.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_product/views/sojoumOrderDetails.vue b/pkg_product/views/sojoumOrderDetails.vue
index b1dd6b6..a65e28a 100644
--- a/pkg_product/views/sojoumOrderDetails.vue
+++ b/pkg_product/views/sojoumOrderDetails.vue
@@ -52,7 +52,7 @@
满减优惠
- ¥{{orderInfo.discountPrice}}
+ ¥{{orderInfo.couponPrice}}
From 52c72c97a711c10e914589840cb80d29663d5b8a Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Fri, 5 Dec 2025 18:25:08 +0800
Subject: [PATCH 74/78] =?UTF-8?q?Fix:4712=20=E3=80=90=E6=97=85=E5=B1=85?=
=?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=BA=97=E9=93=BA=E8=AF=A6=E6=83=85=E9=A1=B5=EF=BC=8C?=
=?UTF-8?q?=E7=AE=A1=E5=AE=B6=E5=88=97=E8=A1=A8-=E7=AE=A1=E5=AE=B6?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA=E7=9A=84=E6=98=AF=E7=AE=A1?=
=?UTF-8?q?=E5=AE=B6=E8=AF=A6=E6=83=85=E4=BB=8B=E7=BB=8D=E5=86=85=E5=AE=B9?=
=?UTF-8?q?=EF=BC=8C=E6=94=B9=E4=B8=BA=E7=AE=A1=E5=AE=B6=E7=AE=80=E4=BB=8B?=
=?UTF-8?q?=E5=86=85=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/sojoumStore.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_product/views/sojoumStore.vue b/pkg_product/views/sojoumStore.vue
index c055bec..1198ff0 100644
--- a/pkg_product/views/sojoumStore.vue
+++ b/pkg_product/views/sojoumStore.vue
@@ -303,7 +303,7 @@
- {{ item.desc }}
+ {{ item.intro }}
{{ tag }}
From 1ad946e7be1565c7d9edf9a607ea8e3e7e49a01a Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Fri, 5 Dec 2025 18:52:16 +0800
Subject: [PATCH 75/78] =?UTF-8?q?Fix:4696=20=E3=80=90=E6=97=85=E5=B1=85?=
=?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E7=A4=BC?=
=?UTF-8?q?=E5=8C=85=E9=A2=86=E5=8F=96=E9=A1=B5=E9=9D=A2=EF=BC=9A=E5=95=86?=
=?UTF-8?q?=E5=93=81=E5=9B=BE=E5=B0=BA=E5=AF=B8=E5=81=8F=E5=B0=8F=EF=BC=8C?=
=?UTF-8?q?=E4=BD=8D=E7=BD=AE=E5=81=8F=E4=B8=8B=EF=BC=8C=E4=B8=8E=E7=AE=A1?=
=?UTF-8?q?=E7=90=86=E5=90=8E=E5=8F=B0=E9=85=8D=E7=BD=AE=E6=95=88=E6=9E=9C?=
=?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/components/GiftCard.vue | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/pkg_user/views/gift/components/GiftCard.vue b/pkg_user/views/gift/components/GiftCard.vue
index 539b042..54c74ad 100644
--- a/pkg_user/views/gift/components/GiftCard.vue
+++ b/pkg_user/views/gift/components/GiftCard.vue
@@ -1,7 +1,7 @@
-
+
-
+
您已领取礼包
查看礼包详情>>
-
+
您已领取礼包,去看看>>
我也要送礼
-
+
礼包已被领取
@@ -64,13 +64,13 @@
-
+
礼包已被领取
去商城看看>>
-
+
您已领取礼包,去看看>>
@@ -326,6 +326,7 @@ export default {
display: flex;
justify-content: center;
align-content: center;
+ margin-top: 200rpx;
}
.bg-image{
width: 420rpx;
From 11098619348e803a15ed7c09c7a8d91a5bb113c6 Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Mon, 8 Dec 2025 21:58:57 +0800
Subject: [PATCH 76/78] =?UTF-8?q?Fix=EF=BC=9A4375=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E6=97=85=E5=B1=85=E5=95=86=E5=AE=B6=E4=B8=BB=E9=A1=B5=E5=88=86?=
=?UTF-8?q?=E4=BA=AB=E6=A8=A1=E6=9D=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/qianxian.js | 5 ++++-
pkg_product/views/sojoumStore.vue | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/api/qianxian.js b/api/qianxian.js
index e981a3a..ae02d43 100644
--- a/api/qianxian.js
+++ b/api/qianxian.js
@@ -153,7 +153,10 @@ export function postJiaLouNewsZan(data) {
export function postJiaLouShare(id) {
return request.get('/countyFamous/sojourn/poster/' + id, {login: true})
}
-
+// 分享旅居1
+export function postTravelShare(id) {
+ return request.get('/travel/poster/' + id, {login: true})
+}
/**
* 获取旅居列表
* countyId int 县城ID
diff --git a/pkg_product/views/sojoumStore.vue b/pkg_product/views/sojoumStore.vue
index 1198ff0..4b94765 100644
--- a/pkg_product/views/sojoumStore.vue
+++ b/pkg_product/views/sojoumStore.vue
@@ -350,7 +350,7 @@ import {
postJiaLouNewsView,
postJiaLouNewsZan,
postJiaLouZan,
- postJiaLouShare,
+ postTravelShare,
getJiaLouProductList,
getJiaLouStewardList,
getJiaLouNewsList
@@ -540,7 +540,7 @@ export default {
},
changeShare() {
uni.showLoading()
- postJiaLouShare(this.id).then(res => {
+ postTravelShare(this.id).then(res => {
this.posterUrl = res.data
this.showShare = !this.showShare
}).finally(() => {
From 07aec60ce9f7fc6eb762c34be226f8271b33ca7f Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Mon, 8 Dec 2025 22:17:45 +0800
Subject: [PATCH 77/78] =?UTF-8?q?Fix=EF=BC=9A4696=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E7=A4=BC=E5=8C=85=E9=A2=86=E5=8F=96=E9=A1=B5=E9=9D=A2=EF=BC=9A?=
=?UTF-8?q?=E5=95=86=E5=93=81=E5=9B=BE=E5=B0=BA=E5=AF=B8=E5=81=8F=E5=B0=8F?=
=?UTF-8?q?=EF=BC=8C=E4=BD=8D=E7=BD=AE=E5=81=8F=E4=B8=8B=EF=BC=8C=E4=B8=8E?=
=?UTF-8?q?=E7=AE=A1=E7=90=86=E5=90=8E=E5=8F=B0=E9=85=8D=E7=BD=AE=E6=95=88?=
=?UTF-8?q?=E6=9E=9C=E4=B8=8D=E4=B8=80=E8=87=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/components/GiftCard.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg_user/views/gift/components/GiftCard.vue b/pkg_user/views/gift/components/GiftCard.vue
index 54c74ad..ade647e 100644
--- a/pkg_user/views/gift/components/GiftCard.vue
+++ b/pkg_user/views/gift/components/GiftCard.vue
@@ -4,7 +4,7 @@
@@ -419,7 +419,7 @@ export default {
}
.gift-card-modal {
height: 560rpx;
- width: 340rpx;
+ width: 420rpx;
justify-content: center;
z-index: 999;
/* margin-top: 100rpx; */
From 2f4d4510a5c4000b59e0647680234055cf6356f8 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Tue, 9 Dec 2025 14:09:19 +0800
Subject: [PATCH 78/78] =?UTF-8?q?Fix:=E7=94=84=E9=80=89=E5=A5=BD=E7=A4=BC?=
=?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/home/newZone.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pages/home/newZone.vue b/pages/home/newZone.vue
index 2b6b924..748315e 100644
--- a/pages/home/newZone.vue
+++ b/pages/home/newZone.vue
@@ -29,7 +29,7 @@
-
+
{{ tab.cateName }}
@@ -140,7 +140,7 @@ export default{
}
.tabs-wrap{
overflow: auto;
- justify-content: justify-between;
+ justify-content: space-between;
}
.tab-item{
margin-right: 20rpx;