feat: 商品详情交互调整

This commit is contained in:
duanshuwen
2025-08-03 11:45:42 +08:00
parent fef285f98d
commit 42c5354978
28 changed files with 3144 additions and 1 deletions

View File

@@ -12,8 +12,21 @@
<ModuleTitle title="购买须知" />
<zero-markdown-view :markdown="goodsData.commodityTip" :fontSize="14" />
<!-- 立即抢购 -->
<view class="footer">
<button class="buy-button" @click="showConfirmPopup">立即抢购</button>
</view>
</view>
</view>
<!-- 商品确认弹窗 -->
<GoodConfirm
ref="goodConfirmRef"
:goodsData="goodsData"
@confirm="handleConfirmOrder"
@close="handleCloseConfirm"
/>
</view>
</template>
@@ -25,8 +38,11 @@ import TopNavBar from "@/components/TopNavBar/index.vue";
import ImageSwiper from "@/components/ImageSwiper/index.vue";
import GoodInfo from "./components/GoodInfo/index.vue";
import ModuleTitle from "@/components/ModuleTitle/index.vue";
import GoodConfirm from "./components/GoodConfirm/index.vue";
const goodsData = ref({});
const goodConfirmRef = ref(null);
// 获取商品详情数据
const goodsInfo = async (params) => {
const res = await goodsDetail(params);
@@ -34,6 +50,29 @@ const goodsInfo = async (params) => {
goodsData.value = res.data;
};
// 显示确认弹窗
const showConfirmPopup = () => {
goodConfirmRef.value?.showPopup();
};
// 处理确认订单
const handleConfirmOrder = (orderData) => {
console.log("确认订单:", orderData);
uni.showToast({
title: "订单确认成功",
icon: "success",
});
// 这里可以跳转到订单页面或支付页面
// uni.navigateTo({
// url: '/pages/order/detail?orderId=' + orderData.orderId
// });
};
// 处理关闭弹窗
const handleCloseConfirm = () => {
console.log("关闭确认弹窗");
};
onLoad(({ commodityId = "1950766939442774018" }) => {
goodsInfo({ commodityId });
});