add:新增会员、优惠券
This commit is contained in:
+112
-49
@@ -4,7 +4,7 @@
|
||||
<view class="card device-info-card">
|
||||
<view class="device-location">
|
||||
<view class="location-left">
|
||||
<image src="/static/images/location-map.svg" mode="aspectFit" class="location-icon"></image>
|
||||
<image src="/static/device_location.png" mode="aspectFit" class="location-icon"></image>
|
||||
<text class="location-name">{{ deviceLocation }}</text>
|
||||
</view>
|
||||
<view class="device-status" :class="deviceStatus.class">
|
||||
@@ -23,16 +23,16 @@
|
||||
<text class="card-title">{{ $t('device.pricingRules') }}</text>
|
||||
</view>
|
||||
|
||||
<view class="pricing-banner">
|
||||
<view class="pricing-main">
|
||||
<text class="price-symbol">¥</text>
|
||||
<text class="price">{{ deviceFeeConfig.maxHourPrice || '5.00' }}</text>
|
||||
<text class="unit">/{{ getPriceUnit() }}</text>
|
||||
<view class="pricing-banner">
|
||||
<view class="pricing-main">
|
||||
<text class="price-symbol">¥</text>
|
||||
<text class="price">{{ deviceFeeConfig.maxHourPrice || '5.00' }}</text>
|
||||
<text class="unit">/{{ getPriceUnit() }}</text>
|
||||
</view>
|
||||
<view class="cap-badge">
|
||||
<text class="cap-text">{{ deviceInfo.depositAmount || '99' }}{{ $t('device.capLimit') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cap-badge">
|
||||
<text class="cap-text">{{ deviceInfo.depositAmount || '99' }}{{ $t('device.capLimit') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="pricing-info">
|
||||
<view class="info-icon">
|
||||
@@ -69,6 +69,16 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="promotion-tip" @click="goToPurchase">
|
||||
<view class="tip-left">
|
||||
<text class="tip-text">{{ $t('device.canUsePromotion') }}</text>
|
||||
</view>
|
||||
<view class="tip-right">
|
||||
<text class="buy-text">{{ $t('device.goToBuy') }}</text>
|
||||
<image src="/static/gotoBuy.png" mode="aspectFit" class="arrow-icon"></image>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 底部操作区 -->
|
||||
<view class="footer">
|
||||
<button class="rent-button" :class="{ 'return-button': hasActiveOrder }"
|
||||
@@ -311,7 +321,7 @@
|
||||
deviceLocation.value = res.data.position.name
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 更新设备状态
|
||||
if (deviceInfo.value.status) {
|
||||
if (deviceInfo.value.status === 'online') {
|
||||
@@ -323,14 +333,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
if (deviceInfo.value.feeConfig) {
|
||||
deviceFeeConfig.value = JSON.parse(deviceInfo.value.feeConfig)[0] || {}
|
||||
console.log('deviceFeeConfig', deviceFeeConfig.value);
|
||||
} else {
|
||||
deviceFeeConfig.value = {
|
||||
maxHourPrice: '5.00',
|
||||
if (deviceInfo.value.feeConfig) {
|
||||
deviceFeeConfig.value = JSON.parse(deviceInfo.value.feeConfig)[0] || {}
|
||||
console.log('deviceFeeConfig', deviceFeeConfig.value);
|
||||
} else {
|
||||
deviceFeeConfig.value = {
|
||||
maxHourPrice: '5.00',
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -352,6 +362,14 @@
|
||||
})
|
||||
}
|
||||
|
||||
// 跳转到优惠专区
|
||||
const goToPurchase = () => {
|
||||
const positionId = positionInfo.value?.positionId || positionInfo.value?.id
|
||||
uni.navigateTo({
|
||||
url: `/pages/purchase/index?positionId=${positionId}`
|
||||
})
|
||||
}
|
||||
|
||||
// 检查订单状态
|
||||
const checkOrderStatus = async () => {
|
||||
try {
|
||||
@@ -405,7 +423,7 @@
|
||||
// 按分钟计费
|
||||
if (deviceInfo.value && deviceInfo.value.feeType === 'minute') {
|
||||
return '分钟'
|
||||
}else if(deviceInfo.value && deviceFeeConfig.value.hourPrice == '0.5'){
|
||||
} else if (deviceInfo.value && deviceFeeConfig.value.hourPrice == '0.5') {
|
||||
return '30分钟'
|
||||
}
|
||||
// 按小时计费(默认)
|
||||
@@ -429,12 +447,12 @@
|
||||
const getBillingUnitPrice = () => {
|
||||
if (!deviceFeeConfig.value || !deviceFeeConfig.value.maxHourPrice) return '5'
|
||||
const maxHourPrice = parseFloat(deviceFeeConfig.value.maxHourPrice)
|
||||
|
||||
|
||||
// 按分钟计费时,直接返回每分钟价格
|
||||
if (deviceInfo.value && deviceInfo.value.feeType === 'minute') {
|
||||
return maxHourPrice.toFixed(2)
|
||||
}
|
||||
|
||||
|
||||
// 按小时计费
|
||||
const hourPrice = parseFloat(deviceFeeConfig.value.hourPrice || 1)
|
||||
const unitPrice = maxHourPrice
|
||||
@@ -517,23 +535,23 @@
|
||||
throw new Error(rentResult.msg || $t('device.rentFailed'))
|
||||
}
|
||||
|
||||
// 获取后端返回的订单信息
|
||||
const order = rentResult.data
|
||||
console.log('订单信息', order);
|
||||
// 获取后端返回的订单信息
|
||||
const order = rentResult.data
|
||||
console.log('订单信息', order);
|
||||
|
||||
// 标记:本次是从设备详情页发起的下单流程,离开页面时不设置启动路径
|
||||
try {
|
||||
uni.setStorageSync('skipSetLaunchPathOnce', true)
|
||||
} catch (e) {
|
||||
console.warn('设置 skipSetLaunchPathOnce 失败:', e)
|
||||
}
|
||||
// 标记:本次是从设备详情页发起的下单流程,离开页面时不设置启动路径
|
||||
try {
|
||||
uni.setStorageSync('skipSetLaunchPathOnce', true)
|
||||
} catch (e) {
|
||||
console.warn('设置 skipSetLaunchPathOnce 失败:', e)
|
||||
}
|
||||
|
||||
if (payWay == 'wx-pay') {
|
||||
if (payWay == 'wx-pay') {
|
||||
// 当支付方式为押金支付时
|
||||
uni.hideLoading()
|
||||
const res = await getOrderByOrderNo(order.orderNo);
|
||||
console.log(res);
|
||||
|
||||
|
||||
const deposit = parseFloat(order.depositAmount);
|
||||
const packagePrice = parseFloat(order.unitPrice);
|
||||
const totalAmount = deposit.toFixed(2);
|
||||
@@ -688,15 +706,15 @@
|
||||
align-items: center;
|
||||
|
||||
.location-icon {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
margin-right: 12rpx;
|
||||
background-color: #10d673;
|
||||
// background-color: #10d673;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.location-name {
|
||||
font-size: 32rpx;
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
}
|
||||
@@ -705,7 +723,7 @@
|
||||
.device-status {
|
||||
padding: 8rpx 24rpx;
|
||||
border-radius: 30rpx;
|
||||
font-size: 24rpx;
|
||||
font-size: 22rpx;
|
||||
|
||||
&.available {
|
||||
background-color: #d4f4dd;
|
||||
@@ -734,7 +752,7 @@
|
||||
align-items: center;
|
||||
|
||||
.id-label {
|
||||
font-size: 28rpx;
|
||||
font-size: 26rpx;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
@@ -748,7 +766,7 @@
|
||||
// 计费规则卡片
|
||||
.pricing-card {
|
||||
.pricing-banner {
|
||||
background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
|
||||
background: #E6F7EC;
|
||||
border-radius: 20rpx;
|
||||
padding: 40rpx 30rpx;
|
||||
margin-bottom: 24rpx;
|
||||
@@ -762,21 +780,21 @@
|
||||
margin-bottom: 16rpx;
|
||||
|
||||
.price-symbol {
|
||||
font-size: 48rpx;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
color: #07c160;
|
||||
margin-right: 4rpx;
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 80rpx;
|
||||
font-size: 64rpx;
|
||||
font-weight: bold;
|
||||
color: #07c160;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.unit {
|
||||
font-size: 32rpx;
|
||||
font-size: 28rpx;
|
||||
color: #07c160;
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
@@ -784,11 +802,11 @@
|
||||
|
||||
.cap-badge {
|
||||
background-color: #07c160;
|
||||
padding: 10rpx 32rpx;
|
||||
padding: 10rpx 28rpx;
|
||||
border-radius: 30rpx;
|
||||
|
||||
line-height: 1;
|
||||
.cap-text {
|
||||
font-size: 26rpx;
|
||||
font-size: 24rpx;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
}
|
||||
@@ -860,6 +878,51 @@
|
||||
}
|
||||
}
|
||||
|
||||
// 促销提示框
|
||||
.promotion-tip {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 20rpx 30rpx;
|
||||
background: rgba(255, 244, 227, 1);
|
||||
border-radius: 22rpx;
|
||||
margin-bottom: 30rpx;
|
||||
transition: all 0.3s;
|
||||
|
||||
&:active {
|
||||
opacity: 0.8;
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.tip-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.tip-text {
|
||||
font-size: 26rpx;
|
||||
color: #A16300;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
.tip-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12rpx;
|
||||
|
||||
.buy-text {
|
||||
font-size: 26rpx;
|
||||
color: #A16300;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.arrow-icon {
|
||||
width: 20rpx;
|
||||
height: 20rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 底部操作区
|
||||
.footer {
|
||||
position: fixed;
|
||||
@@ -912,10 +975,10 @@
|
||||
margin-right: 8rpx;
|
||||
}
|
||||
|
||||
.credit-text {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
}
|
||||
.credit-text {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,242 @@
|
||||
<template>
|
||||
<view class="my-card-page">
|
||||
<!-- 会员卡列表 -->
|
||||
<view class="card-list" v-if="cardList.length > 0">
|
||||
<view v-for="card in cardList" :key="card.id" class="card-item" @click="viewCardDetail(card)">
|
||||
<view class="card-header">
|
||||
<text class="card-name">{{ card.name }}</text>
|
||||
<view class="card-status" :class="getStatusClass(card.status)">
|
||||
<text class="status-text">{{ getStatusText(card.status) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-info">
|
||||
<text class="info-label">{{ $t('myCard.type') }}:</text>
|
||||
<text class="info-value">{{ card.cardType === 'COUNT' ? $t('myCard.timesCard') :
|
||||
$t('myCard.durationCard') }}</text>
|
||||
</view>
|
||||
<view class="card-info" v-if="card.type === 'times'">
|
||||
<text class="info-label">{{ $t('myCard.remainingTimes') }}:</text>
|
||||
<text class="info-value highlight">{{ card.remainingTimes }}/{{ card.totalTimes }}</text>
|
||||
</view>
|
||||
<view class="card-info" v-if="card.type === 'duration'">
|
||||
<text class="info-label">{{ $t('myCard.remainingDuration') }}:</text>
|
||||
<text class="info-value highlight">{{ card.remainingDuration }}{{ $t('myCard.hours') }}</text>
|
||||
</view>
|
||||
<view class="card-info">
|
||||
<text class="info-label">{{ $t('myCard.validPeriod') }}:</text>
|
||||
<text class="info-value">{{ card.startDate }} - {{ card.endDate }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 空状态 -->
|
||||
<view class="empty-state" v-else>
|
||||
<image class="empty-icon" src="/static/empty-card.png" mode="aspectFit"></image>
|
||||
<text class="empty-text">{{ $t('myCard.noCards') }}</text>
|
||||
<view class="buy-btn" @click="goToBuy">
|
||||
<text class="buy-text">{{ $t('myCard.buyNow') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue'
|
||||
import { useI18n } from '@/utils/i18n.js'
|
||||
import {
|
||||
getMemberCardsByStatus
|
||||
} from '@/config/api/member.js'
|
||||
const { t: $t } = useI18n()
|
||||
|
||||
// 会员卡列表
|
||||
const cardList = ref([])
|
||||
|
||||
// 获取会员卡列表
|
||||
const getCardList = async () => {
|
||||
try {
|
||||
const response = await getMemberCardsByStatus()
|
||||
// 处理API返回的数据,转换为模板需要的格式
|
||||
if (response.code === 200 && response.data) {
|
||||
cardList.value = response.data.map(item => ({
|
||||
id: item.id,
|
||||
name: item.cardName,
|
||||
cardType: item.cardType, // TIME -> time
|
||||
totalTimes: item.totalCount,
|
||||
remainingTimes: item.remainingCount,
|
||||
remainingDuration: item.singleLimitMinutes,
|
||||
status: item.status,
|
||||
startDate: item.startTime,
|
||||
endDate: item.endTime,
|
||||
positionName: item.positionName,
|
||||
purchasePrice: item.purchasePrice,
|
||||
// 添加可能的其他字段
|
||||
...item
|
||||
}))
|
||||
} else {
|
||||
cardList.value = []
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('获取会员卡列表失败:', error)
|
||||
uni.showToast({
|
||||
title: $t('myCard.getListFailed'),
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 获取状态类名
|
||||
const getStatusClass = (status) => {
|
||||
const statusMap = {
|
||||
'unused': 'active',
|
||||
'expired': 'expired',
|
||||
'used': 'used',
|
||||
'active': 'active' // 兼容原始状态
|
||||
}
|
||||
return statusMap[status] || 'active' // 默认为active
|
||||
}
|
||||
|
||||
// 获取状态文本
|
||||
const getStatusText = (status) => {
|
||||
const statusMap = {
|
||||
'unused': $t('myCard.active'), // unused表示未使用,即活跃状态
|
||||
'expired': $t('myCard.expired'),
|
||||
'used': $t('myCard.used'),
|
||||
'active': $t('myCard.active') // 兼容原始状态
|
||||
}
|
||||
return statusMap[status] || $t('myCard.active') // 默认为active
|
||||
}
|
||||
|
||||
// 查看卡详情
|
||||
const viewCardDetail = (card) => {
|
||||
// TODO: 跳转到卡详情页面
|
||||
// uni.showToast({
|
||||
// title: $t('common.functionDeveloping'),
|
||||
// icon: 'none'
|
||||
// })
|
||||
}
|
||||
|
||||
// 去购买
|
||||
const goToBuy = () => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/purchase/index'
|
||||
})
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
uni.setNavigationBarTitle({
|
||||
title: $t('user.myCards')
|
||||
})
|
||||
getCardList()
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.my-card-page {
|
||||
min-height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.card-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20rpx;
|
||||
}
|
||||
|
||||
.card-item {
|
||||
background-color: #ffffff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20rpx;
|
||||
padding-bottom: 20rpx;
|
||||
border-bottom: 1rpx solid #f0f0f0;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.card-status {
|
||||
padding: 8rpx 16rpx;
|
||||
border-radius: 20rpx;
|
||||
font-size: 22rpx;
|
||||
|
||||
&.active {
|
||||
background-color: #e8f5e8;
|
||||
color: #4caf50;
|
||||
}
|
||||
|
||||
&.expired {
|
||||
background-color: #ffeaea;
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
&.used {
|
||||
background-color: #f0f0f0;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
|
||||
.card-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 12rpx;
|
||||
|
||||
.info-label {
|
||||
font-size: 26rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.info-value {
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
|
||||
&.highlight {
|
||||
color: #FF6B00;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 120rpx 0;
|
||||
|
||||
.empty-icon {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
margin-bottom: 40rpx;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.empty-text {
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.buy-btn {
|
||||
padding: 20rpx 60rpx;
|
||||
background-color: #B8741A;
|
||||
border-radius: 48rpx;
|
||||
|
||||
.buy-text {
|
||||
font-size: 28rpx;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,420 @@
|
||||
<template>
|
||||
<view class="my-coupon-page">
|
||||
<!-- Tab 切换 -->
|
||||
<view class="tab-container">
|
||||
<view class="tab-item" :class="{ active: currentTab === 'available' }" @click="switchTab('available')">
|
||||
<text class="tab-text">{{ $t('myCoupon.available') }}</text>
|
||||
</view>
|
||||
<view class="tab-item" :class="{ active: currentTab === 'used' }" @click="switchTab('used')">
|
||||
<text class="tab-text">{{ $t('myCoupon.used') }}</text>
|
||||
</view>
|
||||
<view class="tab-item" :class="{ active: currentTab === 'expired' }" @click="switchTab('expired')">
|
||||
<text class="tab-text">{{ $t('myCoupon.expired') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 优惠券列表 -->
|
||||
<view class="coupon-list" v-if="filteredCoupons.length > 0">
|
||||
<view v-for="coupon in filteredCoupons" :key="coupon.id" class="coupon-item-wrapper">
|
||||
<view class="coupon-item" :class="getCouponClass(coupon.status)">
|
||||
<!-- 左侧圆形缺口 -->
|
||||
<view class="coupon-circle-left"></view>
|
||||
<!-- 右侧圆形缺口 -->
|
||||
<view class="coupon-circle-right"></view>
|
||||
|
||||
<view class="coupon-left">
|
||||
<text class="coupon-value">{{ coupon.type === 'discount' ? coupon.discount + '折' : '¥' + coupon.value }}</text>
|
||||
<text class="coupon-condition">{{ coupon.condition }}</text>
|
||||
<text class="coupon-validity-left">{{ coupon.validity }}</text>
|
||||
</view>
|
||||
<view class="coupon-divider"></view>
|
||||
<view class="coupon-right">
|
||||
<text class="coupon-name">{{ coupon.name }}</text>
|
||||
<view class="use-btn" v-if="coupon.status === 'available'" @click="useCoupon(coupon)">
|
||||
<text class="use-text">{{ $t('myCoupon.useNow') }}</text>
|
||||
</view>
|
||||
<text class="coupon-status" v-else>{{ getStatusText(coupon.status) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 空状态 -->
|
||||
<view class="empty-state" v-else>
|
||||
<image class="empty-icon" src="/static/empty-coupon.png" mode="aspectFit"></image>
|
||||
<text class="empty-text">{{ getEmptyText() }}</text>
|
||||
<view class="buy-btn" @click="goToBuy" v-if="currentTab === 'available'">
|
||||
<text class="buy-text">{{ $t('myCoupon.buyNow') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, computed, onMounted } from 'vue'
|
||||
import { useI18n } from '@/utils/i18n.js'
|
||||
import { getUserCoupons } from '@/config/api/coupon.js'
|
||||
|
||||
const { t: $t } = useI18n()
|
||||
|
||||
// 当前选中的 Tab
|
||||
const currentTab = ref('available')
|
||||
|
||||
// Tab 与 API 状态的映射
|
||||
const tabToStatusMap = {
|
||||
available: 'unused',
|
||||
used: 'used',
|
||||
expired: 'expired'
|
||||
}
|
||||
|
||||
// 优惠券列表
|
||||
const couponList = ref([])
|
||||
|
||||
// 过滤后的优惠券
|
||||
const filteredCoupons = computed(() => {
|
||||
return couponList.value.filter(coupon => coupon.status === currentTab.value)
|
||||
})
|
||||
|
||||
// 获取优惠券列表
|
||||
const getCouponList = async () => {
|
||||
try {
|
||||
const apiStatus = tabToStatusMap[currentTab.value]
|
||||
const res = await getUserCoupons(apiStatus)
|
||||
|
||||
if (res.code === 200 && res.data) {
|
||||
// 将后端数据转换为前端需要的格式
|
||||
couponList.value = (res.data || []).map(item => {
|
||||
// 判断优惠券类型:discount_coupon 折扣券,deduction_coupon 抵扣券
|
||||
const isCashCoupon = item.couponType === 'deduction_coupon'
|
||||
|
||||
// 格式化使用条件
|
||||
let condition = '无门槛'
|
||||
if (item.usableCondition && item.usableCondition > 0) {
|
||||
condition = `满${item.usableCondition}可用`
|
||||
}
|
||||
|
||||
// 格式化有效期
|
||||
let validity = ''
|
||||
if (currentTab.value === 'used') {
|
||||
// 已使用显示使用时间(这里暂用开始时间,如后端有使用时间字段可替换)
|
||||
validity = item.couponStartTime ? `使用时间 ${item.couponStartTime}` : ''
|
||||
} else if (item.couponEndTime) {
|
||||
validity = `有效期至 ${item.couponEndTime}`
|
||||
}
|
||||
|
||||
return {
|
||||
id: item.id,
|
||||
name: item.couponName || '优惠券',
|
||||
type: isCashCoupon ? 'cash' : 'discount',
|
||||
value: item.deductAmount ? parseFloat(item.deductAmount) : 0,
|
||||
discount: item.discountRate ? parseFloat(item.discountRate) * 10 : null,
|
||||
condition: condition,
|
||||
validity: validity,
|
||||
status: currentTab.value
|
||||
}
|
||||
})
|
||||
} else {
|
||||
couponList.value = []
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('获取优惠券列表失败:', error)
|
||||
couponList.value = []
|
||||
uni.showToast({
|
||||
title: $t('myCoupon.getListFailed'),
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 切换 Tab
|
||||
const switchTab = (tab) => {
|
||||
currentTab.value = tab
|
||||
getCouponList()
|
||||
}
|
||||
|
||||
// 获取优惠券样式类名
|
||||
const getCouponClass = (status) => {
|
||||
return status === 'available' ? '' : 'disabled'
|
||||
}
|
||||
|
||||
// 获取状态文本
|
||||
const getStatusText = (status) => {
|
||||
const statusMap = {
|
||||
'used': $t('myCoupon.usedStatus'),
|
||||
'expired': $t('myCoupon.expiredStatus')
|
||||
}
|
||||
return statusMap[status] || ''
|
||||
}
|
||||
|
||||
// 获取空状态文本
|
||||
const getEmptyText = () => {
|
||||
const textMap = {
|
||||
'available': $t('myCoupon.noAvailableCoupons'),
|
||||
'used': $t('myCoupon.noUsedCoupons'),
|
||||
'expired': $t('myCoupon.noExpiredCoupons')
|
||||
}
|
||||
return textMap[currentTab.value] || ''
|
||||
}
|
||||
|
||||
// 使用优惠券
|
||||
const useCoupon = (coupon) => {
|
||||
// TODO: 使用优惠券逻辑
|
||||
uni.navigateTo({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
}
|
||||
|
||||
// 去购买
|
||||
const goToBuy = () => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/purchase/index?tab=coupon'
|
||||
})
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
uni.setNavigationBarTitle({
|
||||
title: $t('user.myCoupons')
|
||||
})
|
||||
getCouponList()
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.my-coupon-page {
|
||||
min-height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* Tab 切换 */
|
||||
.tab-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
display: flex;
|
||||
background-color: #ffffff;
|
||||
z-index: 999;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.tab-item {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
padding: 20rpx 0;
|
||||
position: relative;
|
||||
|
||||
.tab-text {
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
&.active {
|
||||
.tab-text {
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 60rpx;
|
||||
height: 6rpx;
|
||||
background-color: #FFA928;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-list {
|
||||
padding: 20rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20rpx;
|
||||
}
|
||||
|
||||
.coupon-item-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.coupon-item {
|
||||
background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
|
||||
border-radius: 20rpx;
|
||||
padding: 40rpx 30rpx;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
min-height: 180rpx;
|
||||
box-sizing: border-box;
|
||||
border: 2rpx solid transparent;
|
||||
transition: all 0.3s;
|
||||
|
||||
&.selected {
|
||||
border-color: #B8741A;
|
||||
box-shadow: 0 4rpx 20rpx rgba(184, 116, 26, 0.2);
|
||||
|
||||
.coupon-circle-left,
|
||||
.coupon-circle-right {
|
||||
background-color: #FFF4E6;
|
||||
border: 2rpx solid #B8741A;
|
||||
}
|
||||
}
|
||||
|
||||
&.disabled {
|
||||
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
|
||||
opacity: 0.6;
|
||||
|
||||
.coupon-value,
|
||||
.coupon-condition,
|
||||
.coupon-name {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.coupon-circle-left,
|
||||
.coupon-circle-right {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 左侧圆形缺口 */
|
||||
.coupon-circle-left {
|
||||
position: absolute;
|
||||
left: -16rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 50%;
|
||||
background-color: #f5f5f5;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* 右侧圆形缺口 */
|
||||
.coupon-circle-right {
|
||||
position: absolute;
|
||||
right: -16rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 50%;
|
||||
background-color: #f5f5f5;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.coupon-left {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.coupon-value {
|
||||
font-size: 48rpx;
|
||||
font-weight: 700;
|
||||
color: #B8741A;
|
||||
}
|
||||
|
||||
.coupon-condition {
|
||||
font-size: 24rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.coupon-validity-left {
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
|
||||
.coupon-divider {
|
||||
width: 2rpx;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 65%;
|
||||
transform: translateX(-50%);
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
// min-height: 160rpx;
|
||||
align-self: stretch;
|
||||
background: repeating-linear-gradient(to bottom,
|
||||
#B8741A 0rpx,
|
||||
#B8741A 8rpx,
|
||||
transparent 8rpx,
|
||||
transparent 16rpx);
|
||||
margin: 0 30rpx;
|
||||
}
|
||||
|
||||
.coupon-right {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8rpx;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.coupon-name {
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.coupon-validity {
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.use-btn {
|
||||
margin-top: 10rpx;
|
||||
padding: 12rpx 28rpx;
|
||||
background-color: #B8741A;
|
||||
border-radius: 40rpx;
|
||||
|
||||
.use-text {
|
||||
font-size: 24rpx;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-status {
|
||||
margin-top: 10rpx;
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 120rpx 0;
|
||||
|
||||
.empty-icon {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
margin-bottom: 40rpx;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.empty-text {
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.buy-btn {
|
||||
padding: 20rpx 60rpx;
|
||||
background-color: #B8741A;
|
||||
border-radius: 48rpx;
|
||||
|
||||
.buy-text {
|
||||
font-size: 28rpx;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
+15
-2
@@ -61,6 +61,20 @@
|
||||
</view>
|
||||
<uv-icon name="arrow-right" size="16" color="#c8c8c8"></uv-icon>
|
||||
</view>
|
||||
<view class="list-item" @click="navigateTo('/pages/my/card')">
|
||||
<view class="left">
|
||||
<image class="icon" src="/static/my_member.png" mode="aspectFit"></image>
|
||||
<text class="title">{{ $t('user.myCards') }}</text>
|
||||
</view>
|
||||
<uv-icon name="arrow-right" size="16" color="#c8c8c8"></uv-icon>
|
||||
</view>
|
||||
<view class="list-item" @click="navigateTo('/pages/my/coupon')">
|
||||
<view class="left">
|
||||
<image class="icon" src="/static/my_coupon.png" mode="aspectFit"></image>
|
||||
<text class="title">{{ $t('user.myCoupons') }}</text>
|
||||
</view>
|
||||
<uv-icon name="arrow-right" size="16" color="#c8c8c8"></uv-icon>
|
||||
</view>
|
||||
<view class="list-item" @click="navigateTo('/pages/help/index')">
|
||||
<view class="left">
|
||||
<image class="icon" src="/static/customer-service.png" mode="aspectFit"></image>
|
||||
@@ -186,8 +200,7 @@ import {
|
||||
},
|
||||
data: {
|
||||
appPlatform: 'wechat', // 微信平台
|
||||
appType: 'user' ,// 用户端
|
||||
pictureLocation:'userProfile_banner'
|
||||
appType: 'user' // 用户端
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -0,0 +1,877 @@
|
||||
<template>
|
||||
<view class="purchase-page">
|
||||
<!-- Tab 切换 -->
|
||||
<view class="tab-container">
|
||||
<view class="tab-item" :class="{ active: currentTab === 'card' }" @click="switchTab('card')">
|
||||
<text class="tab-text">{{ $t('purchase.memberCard') }}</text>
|
||||
</view>
|
||||
<view class="tab-item" :class="{ active: currentTab === 'coupon' }" @click="switchTab('coupon')">
|
||||
<text class="tab-text">{{ $t('purchase.coupon') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 内容区域 -->
|
||||
<scroll-view class="content-area" scroll-y>
|
||||
|
||||
<!-- 会员卡列表 -->
|
||||
<view v-if="currentTab === 'card'" class="product-list">
|
||||
<view v-for="item in memberCards" :key="item.id" class="product-card"
|
||||
:class="{ selected: selectedProduct?.id === item.id }" @click="selectProduct(item)">
|
||||
<view class="card-content">
|
||||
<view class="card-left">
|
||||
<text class="card-name">{{ item.name }}</text>
|
||||
<text class="card-desc">{{ item.description }}</text>
|
||||
</view>
|
||||
<view class="card-right">
|
||||
<text class="card-price">¥{{ item.price }}</text>
|
||||
<text class="card-original-price" v-if="item.originalPrice">¥{{ item.originalPrice }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 空数据提示 -->
|
||||
<uv-empty v-if="memberCards.length === 0" mode="car" :text="$t('purchase.noCards')"></uv-empty>
|
||||
</view>
|
||||
|
||||
<!-- 优惠券列表 -->
|
||||
<view v-if="currentTab === 'coupon'" class="product-list">
|
||||
<view v-for="item in coupons" :key="item.id" class="coupon-card-wrapper">
|
||||
<view class="coupon-card"
|
||||
:class="{ selected: selectedProduct?.id === item.id }" @click="selectProduct(item)">
|
||||
<!-- 左侧圆形缺口 -->
|
||||
<view class="coupon-circle-left"></view>
|
||||
<!-- 右侧圆形缺口 -->
|
||||
<view class="coupon-circle-right"></view>
|
||||
|
||||
<view class="coupon-left">
|
||||
<text class="coupon-value">{{ item.type === 'discount' ? item.discount + '折' : '¥' + item.value
|
||||
}}</text>
|
||||
<text class="coupon-condition">{{ item.condition }}</text>
|
||||
<text class="coupon-validity">{{ item.validity }}</text>
|
||||
</view>
|
||||
<view class="coupon-divider"></view>
|
||||
<view class="coupon-right">
|
||||
<view class="coupon-price">
|
||||
<text class="price-label">¥</text>
|
||||
<text class="price-value">{{ item.price }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 空数据提示 -->
|
||||
<uv-empty v-if="coupons.length === 0" mode="coupon" :text="$t('purchase.noCoupons')"></uv-empty>
|
||||
</view>
|
||||
|
||||
<!-- 说明部分 -->
|
||||
<view class="description-section">
|
||||
<text class="description-title">{{ currentTab === 'card' ? $t('purchase.cardDescription') :
|
||||
$t('purchase.couponDescription') }}</text>
|
||||
<view class="description-content">
|
||||
<view v-for="(desc, index) in descriptions" :key="index" class="description-item">
|
||||
<text class="description-subtitle">{{ desc.title }}</text>
|
||||
<text class="description-text">{{ desc.content }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
<!-- 底部操作栏 -->
|
||||
<view class="bottom-bar">
|
||||
<view class="my-products-wrapper" @click="goToMyProducts">
|
||||
<view class="" style="display: flex;" >
|
||||
<view class="my-products" >
|
||||
<image class="my-products-icon" src="/static/couponList.png" mode="aspectFit">
|
||||
</image>
|
||||
<text class="my-products-text">{{ currentTab === 'card' ? $t('purchase.myCards') :
|
||||
$t('purchase.myCoupons') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="" style="width: 40rpx;height: 40rpx;">
|
||||
<image src="/static/gotoBuy.png" mode="aspectFill" style="width: 40rpx;height: 40rpx;"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="action-wrapper">
|
||||
<view class="price-info">
|
||||
<text class="current-price">¥{{ selectedProduct?.price || '0.00' }}</text>
|
||||
<text class="original-price" v-if="selectedProduct?.originalPrice">¥{{
|
||||
selectedProduct?.originalPrice
|
||||
}}</text>
|
||||
</view>
|
||||
<view class="buy-button" :class="{ disabled: !selectedProduct }" @click="handleBuy">
|
||||
<text class="buy-button-text">{{ $t('purchase.buyNow') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
computed,
|
||||
onMounted
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad
|
||||
} from '@dcloudio/uni-app'
|
||||
import {
|
||||
useI18n
|
||||
} from '@/utils/i18n.js'
|
||||
import {
|
||||
getCouponsByPosition,
|
||||
createCouponPayment,
|
||||
cancelCouponPayment
|
||||
} from '@/config/api/coupon.js'
|
||||
// import {
|
||||
// cancelMemberCardPayment
|
||||
// } from '@/config/api/member.js'
|
||||
import {
|
||||
createMemberCardPayment,
|
||||
getMemberCardsByPosition,
|
||||
cancelMemberCardPayment
|
||||
} from '@/config/api/member.js'
|
||||
|
||||
const {
|
||||
t: $t
|
||||
} = useI18n()
|
||||
|
||||
// 当前选中的 Tab
|
||||
const currentTab = ref('card') // 'card' 或 'coupon'
|
||||
|
||||
// 选中的商品
|
||||
const selectedProduct = ref(null)
|
||||
|
||||
// 当前场地ID(从路由参数获取)
|
||||
const positionId = ref(null)
|
||||
|
||||
// 生命周期 onLoad 钩子 - 获取路由参数
|
||||
onLoad((options) => {
|
||||
if (options.positionId) {
|
||||
positionId.value = options.positionId
|
||||
console.log('获取到场地ID:', positionId.value)
|
||||
}
|
||||
})
|
||||
|
||||
// 会员卡列表(从后端加载)
|
||||
const memberCards = ref([])
|
||||
|
||||
// 优惠券列表(从后端加载)
|
||||
const coupons = ref([])
|
||||
|
||||
// 说明内容
|
||||
const descriptions = computed(() => {
|
||||
if (currentTab.value === 'card') {
|
||||
return [
|
||||
{
|
||||
title: $t('purchase.cardUseInstruction'),
|
||||
content: $t('purchase.cardUseDescription')
|
||||
},
|
||||
{
|
||||
title: $t('purchase.cardValidityPeriod'),
|
||||
content: $t('purchase.cardValidityDescription')
|
||||
},
|
||||
{
|
||||
title: $t('purchase.cardRefundPolicy'),
|
||||
content: $t('purchase.cardRefundDescription')
|
||||
}
|
||||
]
|
||||
} else {
|
||||
return [
|
||||
{
|
||||
title: $t('purchase.couponUseInstruction'),
|
||||
content: $t('purchase.couponUseDescription')
|
||||
},
|
||||
{
|
||||
title: $t('purchase.couponValidityPeriod'),
|
||||
content: $t('purchase.couponValidityDescription')
|
||||
},
|
||||
{
|
||||
title: $t('purchase.couponUsageScope'),
|
||||
content: $t('purchase.couponUsageDescription')
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
|
||||
// 加载会员卡列表
|
||||
const loadMemberCards = async () => {
|
||||
try {
|
||||
uni.showLoading({
|
||||
title: '加载中...'
|
||||
})
|
||||
|
||||
const res = await getMemberCardsByPosition(positionId.value)
|
||||
uni.hideLoading()
|
||||
|
||||
if (res.code === 200 && res.data) {
|
||||
// 转换为页面需要的格式
|
||||
memberCards.value = res.data.map(item => ({
|
||||
id: item.memberCardId,
|
||||
name: item.cardName,
|
||||
type: item.cardType,
|
||||
description: item.positionName || '无描述',
|
||||
price: item.purchasePrice ? item.purchasePrice.toString() : '0.00',
|
||||
originalPrice: null,
|
||||
availablePositions: item.positionName,
|
||||
cycleDays: item.cycleDays,
|
||||
dailyLimitCount: item.dailyLimitCount,
|
||||
singleLimitMinutes: item.singleLimitMinutes,
|
||||
validDays: item.validDays,
|
||||
totalCount: item.totalCount,
|
||||
purchaseQuantity: item.purchaseQuantity
|
||||
}))
|
||||
}
|
||||
} catch (error) {
|
||||
uni.hideLoading()
|
||||
console.error('加载会员卡失败:', error)
|
||||
uni.showToast({
|
||||
title: '加载会员卡失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// 加载优惠券列表
|
||||
const loadCoupons = async () => {
|
||||
try {
|
||||
uni.showLoading({
|
||||
title: '加载中...'
|
||||
})
|
||||
|
||||
const res = await getCouponsByPosition(positionId.value)
|
||||
uni.hideLoading()
|
||||
|
||||
if (res.code === 200 && res.data) {
|
||||
// 转换为页面需要的格式
|
||||
coupons.value = res.data.map(item => ({
|
||||
id: item.couponId,
|
||||
couponId: item.couponId,
|
||||
name: item.couponName,
|
||||
type: item.couponType === '1' ? 'discount' : 'cash',
|
||||
discount: item.discountRate ? (item.discountRate * 10).toFixed(0) : null,
|
||||
value: item.deductAmount ? item.deductAmount.toString() : null,
|
||||
condition: item.usableCondition > 0 ? `满${item.usableCondition}元可用` : '无门槛',
|
||||
validity: item.validDays > 0 ? `从购买日起 有效期${item.validDays}天` : '永久有效',
|
||||
price: item.purchasePrice ? item.purchasePrice.toString() : '0.00',
|
||||
originalPrice: null,
|
||||
usablePositions: item.usablePositionNameMap,
|
||||
remark: item.remark
|
||||
}))
|
||||
}
|
||||
} catch (error) {
|
||||
uni.hideLoading()
|
||||
console.error('加载优惠券失败:', error)
|
||||
uni.showToast({
|
||||
title: '加载优惠券失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 初始化
|
||||
onMounted(async () => {
|
||||
// 加载会员卡列表
|
||||
if (positionId.value) {
|
||||
await loadMemberCards()
|
||||
}
|
||||
|
||||
// 加载优惠券列表
|
||||
if (positionId.value) {
|
||||
await loadCoupons()
|
||||
}
|
||||
|
||||
// 默认选中第一个会员卡(如果有的话)
|
||||
if (memberCards.value.length > 0) {
|
||||
selectedProduct.value = memberCards.value[0]
|
||||
}
|
||||
})
|
||||
const switchTab = (tab) => {
|
||||
currentTab.value = tab
|
||||
selectedProduct.value = null
|
||||
}
|
||||
|
||||
// 选择商品
|
||||
const selectProduct = (product) => {
|
||||
selectedProduct.value = product
|
||||
}
|
||||
|
||||
const orderNo = ref('')
|
||||
|
||||
// 处理购买
|
||||
const handleBuy = async () => {
|
||||
if (!selectedProduct.value) {
|
||||
uni.showToast({
|
||||
title: $t('purchase.pleaseSelect'),
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
// 会员卡购买
|
||||
if (currentTab.value === 'card') {
|
||||
try {
|
||||
uni.showLoading({
|
||||
title: '正在创建订单...'
|
||||
})
|
||||
|
||||
const res = await createMemberCardPayment(selectedProduct.value.id)
|
||||
uni.hideLoading()
|
||||
|
||||
if (res.code === 200 && res.data) {
|
||||
|
||||
orderNo.value = res.data.OutOrderNo;
|
||||
// 调起微信支付
|
||||
uni.requestPayment({
|
||||
timeStamp: res.data.timeStamp,
|
||||
nonceStr: res.data.nonceStr,
|
||||
package: res.data.packageValue || res.data.package,
|
||||
signType: res.data.signType || 'MD5',
|
||||
paySign: res.data.paySign,
|
||||
success: (payRes) => {
|
||||
uni.showToast({
|
||||
title: '支付成功',
|
||||
icon: 'success'
|
||||
})
|
||||
// 支付成功后,跳转到我的会员卡页面
|
||||
setTimeout(() => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/card'
|
||||
})
|
||||
}, 1500)
|
||||
},
|
||||
fail: (err) => {
|
||||
console.error('支付失败:', err)
|
||||
console.log('支付失败详细信息:', err.errMsg.includes('cancel'));
|
||||
if (err.errMsg && err.errMsg.includes('cancel')) {
|
||||
if (orderNo.value) {
|
||||
cancelMemberCardPayment(orderNo.value)
|
||||
.then(cancelRes => {
|
||||
console.log('取消支付订单成功:', cancelRes);
|
||||
})
|
||||
.catch(cancelErr => {
|
||||
console.error('取消支付订单失败:', cancelErr);
|
||||
});
|
||||
}
|
||||
uni.showToast({
|
||||
title: '已取消支付',
|
||||
icon: 'none'
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '支付失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg || '创建订单失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
} catch (error) {
|
||||
uni.hideLoading()
|
||||
console.error('购买失败:', error)
|
||||
uni.showToast({
|
||||
title: '购买失败,请稍后重试',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// 优惠券购买
|
||||
if (currentTab.value === 'coupon') {
|
||||
try {
|
||||
uni.showLoading({
|
||||
title: '正在创建订单...'
|
||||
})
|
||||
|
||||
const res = await createCouponPayment(selectedProduct.value.couponId)
|
||||
uni.hideLoading()
|
||||
|
||||
if (res.code === 200 && res.data) {
|
||||
// 调起微信支付
|
||||
uni.requestPayment({
|
||||
timeStamp: res.data.timeStamp,
|
||||
nonceStr: res.data.nonceStr,
|
||||
package: res.data.packageValue || res.data.package,
|
||||
signType: res.data.signType || 'MD5',
|
||||
paySign: res.data.paySign,
|
||||
success: (payRes) => {
|
||||
uni.showToast({
|
||||
title: '支付成功',
|
||||
icon: 'success'
|
||||
})
|
||||
// 支付成功后,跳转到我的优惠券页面
|
||||
setTimeout(() => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/coupon'
|
||||
})
|
||||
}, 1500)
|
||||
},
|
||||
fail: (err) => {
|
||||
console.error('支付失败:', err)
|
||||
if (err.errMsg && err.errMsg.includes('cancel')) {
|
||||
// 用户取消支付,调用取消接口
|
||||
const orderNo = res.data.OutOrderNo;
|
||||
if (orderNo) {
|
||||
cancelCouponPayment(orderNo)
|
||||
.then(cancelRes => {
|
||||
console.log('取消支付订单成功:', cancelRes);
|
||||
})
|
||||
.catch(cancelErr => {
|
||||
console.error('取消支付订单失败:', cancelErr);
|
||||
});
|
||||
}
|
||||
uni.showToast({
|
||||
title: '已取消支付',
|
||||
icon: 'none'
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '支付失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg || '创建订单失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
} catch (error) {
|
||||
uni.hideLoading()
|
||||
console.error('购买失败:', error)
|
||||
uni.showToast({
|
||||
title: '购买失败,请稍后重试',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 查看我的商品
|
||||
const goToMyProducts = () => {
|
||||
if (currentTab.value === 'card') {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/card'
|
||||
})
|
||||
} else if (currentTab.value === 'coupon') {
|
||||
uni.navigateTo({
|
||||
url: '/pages/my/coupon'
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.purchase-page {
|
||||
min-height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
padding-bottom: 180rpx;
|
||||
}
|
||||
|
||||
/* Tab 切换 */
|
||||
.tab-container {
|
||||
top: 0;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
background-color: #ffffff;
|
||||
z-index: 999;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.tab-item {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
padding: 20rpx 0;
|
||||
position: relative;
|
||||
|
||||
.tab-text {
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
&.active {
|
||||
.tab-text {
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 60rpx;
|
||||
height: 6rpx;
|
||||
background-color: #FFA928;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 内容区域 */
|
||||
.content-area {
|
||||
height: calc(100vh - 180rpx);
|
||||
padding: 20rpx;
|
||||
padding-top: 120rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 商品列表 */
|
||||
.product-list {
|
||||
margin-bottom: 20rpx;
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
|
||||
/* 会员卡卡片 */
|
||||
.product-card {
|
||||
background-color: #ffffff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
margin-bottom: 20rpx;
|
||||
border: 2rpx solid transparent;
|
||||
transition: all 0.3s;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
border-color: #FFA928;
|
||||
box-shadow: 0 4rpx 20rpx rgba(255, 169, 40, 0.2);
|
||||
}
|
||||
|
||||
.card-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.card-left {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10rpx;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.card-right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.card-price {
|
||||
font-size: 36rpx;
|
||||
font-weight: 600;
|
||||
color: #FF6B00;
|
||||
}
|
||||
|
||||
.card-original-price {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
|
||||
/* 优惠券卡片 */
|
||||
.coupon-card-wrapper {
|
||||
position: relative;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-card {
|
||||
background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
|
||||
border-radius: 20rpx;
|
||||
padding: 40rpx 30rpx;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border: 2rpx solid transparent;
|
||||
transition: all 0.3s;
|
||||
overflow: visible;
|
||||
min-height: 180rpx;
|
||||
|
||||
&.selected {
|
||||
border-color: #B8741A;
|
||||
box-shadow: 0 4rpx 20rpx rgba(184, 116, 26, 0.2);
|
||||
|
||||
.coupon-circle-left,
|
||||
.coupon-circle-right {
|
||||
background-color: #FFF4E6;
|
||||
border: 2rpx solid #B8741A;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 左侧圆形缺口 */
|
||||
.coupon-circle-left {
|
||||
position: absolute;
|
||||
left: -16rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 50%;
|
||||
background-color: #f5f5f5;
|
||||
z-index: 10;
|
||||
transition: all 0.3s;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 右侧圆形缺口 */
|
||||
.coupon-circle-right {
|
||||
position: absolute;
|
||||
right: -16rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 50%;
|
||||
background-color: #f5f5f5;
|
||||
z-index: 10;
|
||||
transition: all 0.3s;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.coupon-left {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8rpx;
|
||||
}
|
||||
|
||||
.coupon-value {
|
||||
font-size: 48rpx;
|
||||
font-weight: 700;
|
||||
color: #B8741A;
|
||||
}
|
||||
|
||||
.coupon-condition {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.coupon-validity {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.coupon-divider {
|
||||
width: 2rpx;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 65%;
|
||||
transform: translateX(-50%);
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
// min-height: 160rpx;
|
||||
align-self: stretch;
|
||||
background: repeating-linear-gradient(to bottom,
|
||||
#B8741A 0rpx,
|
||||
#B8741A 8rpx,
|
||||
transparent 8rpx,
|
||||
transparent 16rpx);
|
||||
margin: 0 30rpx;
|
||||
}
|
||||
|
||||
.coupon-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.coupon-price {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 4rpx;
|
||||
|
||||
.price-label {
|
||||
font-size: 24rpx;
|
||||
color: #B8741A;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.price-value {
|
||||
font-size: 36rpx;
|
||||
color: #B8741A;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 说明部分 */
|
||||
.description-section {
|
||||
background-color: #ffffff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
margin-top: 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.description-title {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 20rpx;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.description-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20rpx;
|
||||
}
|
||||
|
||||
.description-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10rpx;
|
||||
}
|
||||
|
||||
.description-subtitle {
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.description-text {
|
||||
font-size: 24rpx;
|
||||
color: #666;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* 底部操作栏 */
|
||||
.bottom-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: #ffffff;
|
||||
padding-bottom: 20rpx;
|
||||
border-radius: 40rpx 40rpx 0 0;
|
||||
// padding: 20rpx 30rpx;
|
||||
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
|
||||
box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.05);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.my-products-wrapper {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row;
|
||||
background: #FFF4E3;
|
||||
border-radius: 40rpx;
|
||||
padding: 16rpx 32rpx;
|
||||
border-radius: 40rpx 40rpx 0 0;
|
||||
}
|
||||
|
||||
.action-wrapper {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex: 1;
|
||||
margin-left: 20rpx;
|
||||
margin-right: 20rpx;
|
||||
padding-top: 20rpx;
|
||||
}
|
||||
|
||||
.my-products {
|
||||
display: flex;
|
||||
// flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 4rpx;
|
||||
min-width: 120rpx;
|
||||
cursor: pointer;
|
||||
|
||||
&.full {
|
||||
flex-direction: row;
|
||||
gap: 8rpx;
|
||||
padding: 16rpx 32rpx;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 40rpx;
|
||||
}
|
||||
|
||||
.my-products-icon {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.my-products-text {
|
||||
margin-left: 10rpx;
|
||||
font-size: 22rpx;
|
||||
color: #A16300;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.price-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
// align-items: flex-end;
|
||||
gap: 4rpx;
|
||||
flex: 1;
|
||||
margin: 0 20rpx;
|
||||
}
|
||||
|
||||
.current-price {
|
||||
font-size: 36rpx;
|
||||
font-weight: 600;
|
||||
color: #FF6B00;
|
||||
}
|
||||
|
||||
.original-price {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.buy-button {
|
||||
padding: 24rpx 60rpx;
|
||||
background-color: #B8741A;
|
||||
border-radius: 48rpx;
|
||||
transition: all 0.3s;
|
||||
|
||||
&.disabled {
|
||||
background-color: #ccc;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.buy-button-text {
|
||||
font-size: 32rpx;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -55,6 +55,7 @@
|
||||
<view class="tags">
|
||||
<view class="tag rent" v-if="isRentable(item)">{{ $t('location.rent') }}</view>
|
||||
<view class="tag return" v-if="isReturnable(item)">{{ $t('location.return') }}</view>
|
||||
<view class="tag" v-if="isCoupon(item)">{{CouponOrmember(item)}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="actions">
|
||||
@@ -131,6 +132,11 @@
|
||||
if (typeof item?.canReturn !== 'undefined') return !!item.canReturn
|
||||
return String(item?.status || '').toLowerCase() === 'online'
|
||||
}
|
||||
|
||||
const isCoupon = (item)=>{
|
||||
if(typeof item.canCoupon!=='undefined')return !!item.canCoupon
|
||||
return String(item?.canCoupon||'').toLowerCase()==='true';
|
||||
}
|
||||
|
||||
const formatDistance = (meters) => {
|
||||
if (meters < 1000) return `${Math.round(meters)}m`
|
||||
@@ -186,6 +192,11 @@
|
||||
positionList.value.sort((a, b) => (a.distanceInMeters || 999999) - (b.distanceInMeters || 999999))
|
||||
applyFilter()
|
||||
}
|
||||
|
||||
const CouponOrmember= async(item)=>{
|
||||
|
||||
return "可使用优惠券、会员卡"
|
||||
}
|
||||
|
||||
const loadPositions = async (center) => {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user