优惠卷页面选择开发
parent
9ab3c29168
commit
33e9728400
|
|
@ -4,9 +4,9 @@
|
|||
*/
|
||||
|
||||
// 基础URL配置(注意:末尾不要加斜杠)
|
||||
const BASE_URL = 'https://guangsh.manage.hschengtai.com'
|
||||
// const BASE_URL = 'https://guangsh.manage.hschengtai.com'
|
||||
// const BASE_URL = 'http://192.168.0.97:48085'
|
||||
// const BASE_URL = 'http://192.168.5.134:48085'
|
||||
const BASE_URL = 'http://192.168.5.135:48085'
|
||||
// 是否正在刷新token(防止并发刷新)
|
||||
let isRefreshing = false
|
||||
// 等待刷新完成的请求队列
|
||||
|
|
@ -330,7 +330,8 @@ export function request(options = {}) {
|
|||
uni.showModal({
|
||||
title: '提示',
|
||||
content: errorMsg,
|
||||
showCancel: false,
|
||||
showCancel: true,
|
||||
cancelText: '取消',
|
||||
confirmText: '去登录',
|
||||
success: (modalRes) => {
|
||||
if (modalRes.confirm) {
|
||||
|
|
|
|||
|
|
@ -183,4 +183,13 @@ export function cancelOrder(params = {}){
|
|||
})
|
||||
}
|
||||
|
||||
// 获得优惠卷分页
|
||||
export function getLuCouponPage(params = {}) {
|
||||
return request({
|
||||
url: '/app-api/member/lu-coupon/page',
|
||||
method: 'GET',
|
||||
data: params,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -52,6 +52,13 @@
|
|||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "selectCoupon",
|
||||
"style": {
|
||||
"navigationBarTitleText": "选择优惠卷",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "mapDetail",
|
||||
"style": {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,253 @@
|
|||
<template>
|
||||
<view class="select-coupon-page">
|
||||
<view class="header-fixed-wrapper" :style="{ height: headerHeight + 'px' }">
|
||||
<NavHeader title="选择优惠卷" />
|
||||
</view>
|
||||
<view class="main-wrap" :style="{ paddingTop: headerHeight + 'px' }">
|
||||
<scroll-view class="coupon-list" scroll-y="true">
|
||||
<view
|
||||
class="coupon-item"
|
||||
v-for="(item, index) in coupons"
|
||||
:key="index"
|
||||
:class="{ disabled: !item.isApplicable }"
|
||||
@click="selectCoupon(item)"
|
||||
>
|
||||
<view class="coupon-left">
|
||||
<!-- 折扣类 -->
|
||||
<view class="coupon-price" v-if="item.type === 2">
|
||||
<text class="amount">{{ (item.discountPercent / 10).toFixed(1).replace(/\.0$/, '') }}</text>
|
||||
<text class="symbol" style="font-size: 24rpx; margin-left: 4rpx;">折</text>
|
||||
</view>
|
||||
<!-- 金额类 -->
|
||||
<view class="coupon-price" v-else>
|
||||
<text class="symbol">¥</text>
|
||||
<!-- 检查返回的字段是 discountPrice, discountAmount 还是抵扣金额相关字段,如果是金额类,应该有值 -->
|
||||
<text class="amount">{{ formatAmount(item.discountAmount || item.discountPrice || item.price || 0) }}</text>
|
||||
</view>
|
||||
|
||||
<view class="coupon-condition" v-if="item.usePrice">
|
||||
满{{ formatAmount(item.usePrice) }}可用
|
||||
</view>
|
||||
<view class="coupon-condition" v-else>
|
||||
无门槛
|
||||
</view>
|
||||
</view>
|
||||
<view class="coupon-right">
|
||||
<view class="coupon-name">{{ item.name }}</view>
|
||||
<view class="coupon-time" v-if="item.type === 2 && item.discountLimit > 0" style="margin-bottom: 6rpx;">最多抵扣: ¥{{ formatAmount(item.discountLimit) }}</view>
|
||||
<view class="coupon-time" v-if="item.validEndTime">有效期至: {{ formatTimeStr(item.validEndTime) }}</view>
|
||||
</view>
|
||||
<view class="coupon-radio">
|
||||
<radio :checked="selectedCouponId === item.id" :disabled="!item.isApplicable" color="#d51c3c" style="transform:scale(0.8)" />
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="coupons.length === 0" class="empty-tip">暂无优惠卷</view>
|
||||
</scroll-view>
|
||||
<!-- 不使用优惠卷按钮 -->
|
||||
<view class="bottom-bar">
|
||||
<button class="no-coupon-btn" @click="selectNone">不使用优惠卷</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavHeader from "@/components/NavHeader/NavHeader.vue";
|
||||
import { formatTime } from "@/utils/date.js";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
NavHeader,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
statusBarHeight: 0,
|
||||
coupons: [],
|
||||
selectedCouponId: null,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
headerHeight() {
|
||||
return this.statusBarHeight + 44;
|
||||
},
|
||||
},
|
||||
onLoad() {
|
||||
const systemInfo = uni.getSystemInfoSync();
|
||||
this.statusBarHeight = systemInfo.statusBarHeight || 0;
|
||||
|
||||
// 获取传递过来的数据
|
||||
const eventChannel = this.getOpenerEventChannel();
|
||||
if (eventChannel && eventChannel.on) {
|
||||
eventChannel.on('acceptDataFromOpenerPage', (data) => {
|
||||
this.coupons = data.coupons || [];
|
||||
this.selectedCouponId = data.selectedCouponId || null;
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
selectCoupon(item) {
|
||||
if (!item.isApplicable) {
|
||||
return;
|
||||
}
|
||||
this.selectedCouponId = item.id;
|
||||
this.confirmSelection(item);
|
||||
},
|
||||
selectNone() {
|
||||
this.selectedCouponId = null;
|
||||
this.confirmSelection(null);
|
||||
},
|
||||
confirmSelection(coupon) {
|
||||
const eventChannel = this.getOpenerEventChannel();
|
||||
if (eventChannel && eventChannel.emit) {
|
||||
eventChannel.emit('acceptDataFromOpenedPage', { coupon });
|
||||
}
|
||||
uni.navigateBack();
|
||||
},
|
||||
formatTimeStr(timestamp) {
|
||||
if (!timestamp) return '';
|
||||
return formatTime(timestamp, 'YYYY-MM-DD HH:mm:ss');
|
||||
},
|
||||
// 将分转换为元,并处理小数显示
|
||||
formatAmount(amount) {
|
||||
if (!amount) return '0';
|
||||
const yuan = amount / 100;
|
||||
// 如果是整数,直接显示整数;如果有小数,保留两位小数但去掉末尾的0
|
||||
return Number.isInteger(yuan) ? yuan.toString() : yuan.toFixed(2).replace(/\.?0+$/, '');
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.select-coupon-page {
|
||||
min-height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.header-fixed-wrapper {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 100;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.main-wrap {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.coupon-list {
|
||||
flex: 1;
|
||||
padding: 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.coupon-item {
|
||||
display: flex;
|
||||
background-color: #fff;
|
||||
border-radius: 16rpx;
|
||||
margin-bottom: 20rpx;
|
||||
padding: 30rpx;
|
||||
align-items: center;
|
||||
|
||||
&.disabled {
|
||||
opacity: 0.6;
|
||||
background-color: #fafafa;
|
||||
|
||||
.coupon-price {
|
||||
color: #999 !important;
|
||||
}
|
||||
|
||||
.coupon-name {
|
||||
color: #999 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 160rpx;
|
||||
border-right: 2rpx dashed #eee;
|
||||
padding-right: 20rpx;
|
||||
|
||||
.coupon-price {
|
||||
color: #d51c3c;
|
||||
|
||||
.symbol {
|
||||
font-size: 24rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.amount {
|
||||
font-size: 48rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-condition {
|
||||
font-size: 20rpx;
|
||||
color: #666;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-right {
|
||||
flex: 1;
|
||||
padding-left: 30rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
.coupon-name {
|
||||
font-size: 28rpx;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.coupon-time {
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
|
||||
.coupon-radio {
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.empty-tip {
|
||||
text-align: center;
|
||||
padding: 60rpx 0;
|
||||
color: #999;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
padding: 20rpx 40rpx calc(20rpx + env(safe-area-inset-bottom));
|
||||
background-color: #fff;
|
||||
border-top: 1rpx solid #eee;
|
||||
|
||||
.no-coupon-btn {
|
||||
width: 100%;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
text-align: center;
|
||||
background-color: #f5f5f5;
|
||||
color: #333;
|
||||
font-size: 32rpx;
|
||||
border-radius: 44rpx;
|
||||
border: none;
|
||||
|
||||
&::after {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
@ -101,22 +101,27 @@
|
|||
|
||||
<!-- 底部结算栏(固定) -->
|
||||
<view class="checkout-footer">
|
||||
<view class="total-info">
|
||||
<text class="total-label">总金额¥</text>
|
||||
<text class="total-amount">{{ totalAmount.toFixed(2) }}</text>
|
||||
<view class="member-benefit">
|
||||
<image
|
||||
class="crown-icon"
|
||||
src="/static/service/crown-icon.png"
|
||||
mode="aspectFill"
|
||||
></image>
|
||||
<text class="benefit-text">{{ memberLevelName }}优惠</text>
|
||||
<view class="footer-left">
|
||||
<view class="price-section">
|
||||
<view class="main-price">
|
||||
<text class="price-label">合计:</text>
|
||||
<text class="price-symbol">¥</text>
|
||||
<text class="price-num">{{ totalAmount.toFixed(2) }}</text>
|
||||
<view class="member-benefit" v-if="hasMemberDiscount">
|
||||
<image class="crown-icon" src="/static/service/crown-icon.png" mode="aspectFill"></image>
|
||||
<text class="benefit-text">{{ memberLevelName }}优惠</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="discount-section" @click="openCouponPopup">
|
||||
<text class="discount-text">{{ selectedCoupon ? '已优惠 ¥' + (calculateCouponDiscount(selectedCoupon) / 100).toFixed(2) : '选择优惠卷' }}</text>
|
||||
<uni-icons type="right" size="12" color="#d51c3c"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<button
|
||||
class="checkout-btn"
|
||||
:class="{ disabled: totalAmount <= 0 }"
|
||||
:disabled="totalAmount <= 0"
|
||||
:class="{ disabled: totalAmountBeforeDiscount <= 0 }"
|
||||
:disabled="totalAmountBeforeDiscount <= 0"
|
||||
@click="handleCheckout"
|
||||
>
|
||||
去结算
|
||||
|
|
@ -131,7 +136,8 @@ import {
|
|||
getGuildStoreDetail,
|
||||
getGuildVoucher,
|
||||
getPaySign,
|
||||
appBuy
|
||||
appBuy,
|
||||
getLuCouponPage
|
||||
} from "@/api/service";
|
||||
import NavHeader from "@/components/NavHeader/NavHeader.vue";
|
||||
|
||||
|
|
@ -149,23 +155,33 @@ export default {
|
|||
userInfo: {},
|
||||
distance: null,
|
||||
paying: false,
|
||||
coupons: [], // 用户优惠卷列表
|
||||
selectedCoupon: null, // 已选中的优惠卷
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
headerHeight() {
|
||||
return this.statusBarHeight + 44;
|
||||
},
|
||||
// 计算总金额(只计算选中且数量大于0的商品)
|
||||
totalAmount() {
|
||||
// 计算折扣前总金额
|
||||
totalAmountBeforeDiscount() {
|
||||
return this.menuList.reduce((total, item) => {
|
||||
if (item.selected && item.quantity > 0) {
|
||||
// 价格是以分为单位,需要转换为元
|
||||
const price = (item.salePrice || 0) / 100;
|
||||
return total + price * item.quantity;
|
||||
}
|
||||
return total;
|
||||
}, 0);
|
||||
},
|
||||
// 计算总金额(只计算选中且数量大于0的商品,并减去优惠金额)
|
||||
totalAmount() {
|
||||
let amount = this.totalAmountBeforeDiscount;
|
||||
if (this.selectedCoupon) {
|
||||
const discount = this.calculateCouponDiscount(this.selectedCoupon) / 100;
|
||||
amount = Math.max(0, amount - discount);
|
||||
}
|
||||
return amount;
|
||||
},
|
||||
// 是否有会员优惠
|
||||
hasMemberDiscount() {
|
||||
return this.menuList.some((item) => item.selected && item.discount);
|
||||
|
|
@ -178,6 +194,15 @@ export default {
|
|||
);
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
// 监听菜单变化,自动匹配最佳优惠卷
|
||||
menuList: {
|
||||
handler() {
|
||||
this.autoSelectBestCoupon();
|
||||
},
|
||||
deep: true
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
const systemInfo = uni.getSystemInfoSync();
|
||||
this.statusBarHeight = systemInfo.statusBarHeight || 0;
|
||||
|
|
@ -235,10 +260,11 @@ export default {
|
|||
// 加载店铺数据
|
||||
async loadStoreData() {
|
||||
try {
|
||||
// 并行加载店铺详情和菜单
|
||||
// 并行加载店铺详情、菜单和优惠卷
|
||||
await Promise.all([
|
||||
this.loadStoreDetail(this.shopId),
|
||||
this.loadStoreMenu(this.shopId),
|
||||
this.loadCoupons()
|
||||
]);
|
||||
} catch (error) {
|
||||
console.error("加载店铺数据失败:", error);
|
||||
|
|
@ -281,6 +307,153 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
// 加载用户优惠卷
|
||||
async loadCoupons() {
|
||||
try {
|
||||
const res = await getLuCouponPage({ pageNo: 1, pageSize: 100, status: 0 });
|
||||
if (res && res.list) {
|
||||
this.coupons = res.list;
|
||||
this.autoSelectBestCoupon();
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("加载优惠卷失败:", error);
|
||||
}
|
||||
},
|
||||
|
||||
// 检查优惠卷是否适用
|
||||
// 这里会结合当前页面已选择的代金券商品(menuList 中 selected 为 true 且数量 > 0 的项)进行判断
|
||||
isCouponApplicable(coupon) {
|
||||
if (!coupon) return false;
|
||||
|
||||
// 1. 检查金额是否满足条件
|
||||
// 判断当前已选商品的总金额(未扣除优惠前)是否达到该优惠卷的使用门槛(usePrice)
|
||||
const usePrice = coupon.usePrice || 0;
|
||||
if (this.totalAmountBeforeDiscount * 100 < usePrice) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// 2. 检查商品是否匹配
|
||||
// 获取当前购物车中已勾选且数量大于0的所有商品的 ID 列表
|
||||
const selectedItemIds = this.menuList
|
||||
.filter(item => item.selected && item.quantity > 0)
|
||||
.map(item => item.id);
|
||||
|
||||
// 如果没有选择任何商品,则所有优惠卷均不可用
|
||||
if (selectedItemIds.length === 0) return false;
|
||||
|
||||
// 3. 根据可用范围(productScope)进一步判断
|
||||
// 如果可用范围是 1(全部代金券通用),且前面金额满足,则直接判定为可用
|
||||
if (coupon.productScope === 1) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// 如果可用范围是 2(指定代金券可用),则需要判断接口返回的 voucherIds(该优惠卷适用的指定商品ID集合)
|
||||
let vIds = coupon.voucherIds || [];
|
||||
if (typeof vIds === 'string') {
|
||||
vIds = vIds.split(',').map(id => Number(id));
|
||||
}
|
||||
|
||||
// 只要有一个已选中的商品 ID 存在于该优惠卷的适用商品 ID 列表(voucherIds)中,即视为匹配
|
||||
if (vIds.length > 0) {
|
||||
const hasMatch = selectedItemIds.some(id => vIds.includes(id) || vIds.includes(String(id)));
|
||||
if (!hasMatch) return false;
|
||||
} else if (coupon.productScope === 2) {
|
||||
// 如果是指定商品可用,但后端没有返回适用的 voucherIds,保守起见判定为不可用
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
|
||||
// 自动选择最佳优惠卷
|
||||
autoSelectBestCoupon() {
|
||||
// 找出所有适用的优惠卷
|
||||
const applicableCoupons = this.coupons.filter(c => this.isCouponApplicable(c));
|
||||
|
||||
if (applicableCoupons.length === 0) {
|
||||
this.selectedCoupon = null;
|
||||
return;
|
||||
}
|
||||
|
||||
// 按优惠金额从大到小排序
|
||||
applicableCoupons.sort((a, b) => {
|
||||
const discountA = this.calculateCouponDiscount(a);
|
||||
const discountB = this.calculateCouponDiscount(b);
|
||||
return discountB - discountA;
|
||||
});
|
||||
|
||||
// 选出优惠最大的
|
||||
this.selectedCoupon = applicableCoupons[0];
|
||||
},
|
||||
|
||||
// 计算某个优惠卷能抵扣的金额(单位:分)
|
||||
calculateCouponDiscount(coupon) {
|
||||
if (!coupon) return 0;
|
||||
// 1-金额类 或 兼容旧数据
|
||||
if (coupon.type === 1 || !coupon.type) {
|
||||
return coupon.discountAmount || coupon.discountPrice || coupon.price || 0;
|
||||
}
|
||||
// 2-折扣类
|
||||
if (coupon.type === 2) {
|
||||
let applicableAmount = 0; // 适用的商品总价(分)
|
||||
|
||||
if (coupon.productScope === 1) {
|
||||
// 全部通用,则适用总价为当前商品总价
|
||||
applicableAmount = this.totalAmountBeforeDiscount * 100;
|
||||
} else {
|
||||
// 指定代金券可用,计算匹配商品的总价
|
||||
let vIds = coupon.voucherIds || [];
|
||||
if (typeof vIds === 'string') {
|
||||
vIds = vIds.split(',').map(id => Number(id));
|
||||
}
|
||||
this.menuList.forEach(item => {
|
||||
if (item.selected && item.quantity > 0) {
|
||||
if (vIds.includes(item.id) || vIds.includes(String(item.id))) {
|
||||
applicableAmount += (item.sellPrice || 0) * item.quantity;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 计算抵扣金额:适用金额 * (100 - 折扣百分比) / 100
|
||||
// 例:80表示8折,即抵扣 20%
|
||||
const percent = coupon.discountPercent || 100;
|
||||
let discount = Math.floor(applicableAmount * (100 - percent) / 100);
|
||||
|
||||
// 如果有最大抵扣限制
|
||||
if (coupon.discountLimit && coupon.discountLimit > 0) {
|
||||
discount = Math.min(discount, coupon.discountLimit);
|
||||
}
|
||||
|
||||
return discount;
|
||||
}
|
||||
return 0;
|
||||
},
|
||||
|
||||
// 打开优惠卷页面
|
||||
openCouponPopup() {
|
||||
// 为优惠卷附加 isApplicable 属性
|
||||
const couponsWithStatus = this.coupons.map(c => ({
|
||||
...c,
|
||||
isApplicable: this.isCouponApplicable(c)
|
||||
}));
|
||||
|
||||
uni.navigateTo({
|
||||
url: '/pages/detail/selectCoupon',
|
||||
success: (res) => {
|
||||
res.eventChannel.emit('acceptDataFromOpenerPage', {
|
||||
coupons: couponsWithStatus,
|
||||
selectedCouponId: this.selectedCoupon ? this.selectedCoupon.id : null
|
||||
});
|
||||
},
|
||||
events: {
|
||||
acceptDataFromOpenedPage: (data) => {
|
||||
this.selectedCoupon = data.coupon;
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
// 切换菜单项选择状态
|
||||
toggleMenuItem(index) {
|
||||
const item = this.menuList[index];
|
||||
|
|
@ -295,6 +468,7 @@ export default {
|
|||
// 选中时,如果当前数量为 0 或未设置,则默认数量为 1
|
||||
item.quantity = 1;
|
||||
}
|
||||
this.autoSelectBestCoupon();
|
||||
},
|
||||
|
||||
// 增加数量
|
||||
|
|
@ -310,6 +484,7 @@ export default {
|
|||
}
|
||||
// 增加数量
|
||||
item.quantity = (item.quantity || 0) + 1;
|
||||
this.autoSelectBestCoupon();
|
||||
},
|
||||
|
||||
// 减少数量
|
||||
|
|
@ -328,6 +503,7 @@ export default {
|
|||
item.selected = false;
|
||||
}
|
||||
}
|
||||
this.autoSelectBestCoupon();
|
||||
},
|
||||
|
||||
// 格式化价格:将分转换为元(除以100,保留两位小数)
|
||||
|
|
@ -370,11 +546,19 @@ export default {
|
|||
|
||||
console.log("购买信息: " + voucherStr);
|
||||
console.log("金额:" + trxamt);
|
||||
const res = await appBuy({
|
||||
|
||||
const buyParams = {
|
||||
shopId: this.shopId,
|
||||
voucherData: voucherStr,
|
||||
payableAmount: trxamt,
|
||||
});
|
||||
};
|
||||
|
||||
// 如果选择了优惠卷,传递优惠卷ID
|
||||
if (this.selectedCoupon) {
|
||||
buyParams.memberCouponId = this.selectedCoupon.id;
|
||||
}
|
||||
|
||||
const res = await appBuy(buyParams);
|
||||
console.log(res);
|
||||
if (!res) {
|
||||
uni.showToast({
|
||||
|
|
@ -762,64 +946,107 @@ export default {
|
|||
left: 0;
|
||||
right: 0;
|
||||
background-color: #fff;
|
||||
padding: 25rpx 20rpx 25rpx 48rpx;
|
||||
padding: 20rpx 30rpx calc(20rpx + env(safe-area-inset-bottom));
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-top: 1rpx solid #e2e8f1;
|
||||
box-shadow: 0 -4rpx 12rpx rgba(0, 0, 0, 0.05);
|
||||
z-index: 100;
|
||||
|
||||
.total-info {
|
||||
.footer-left {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
align-items: center;
|
||||
|
||||
.total-label {
|
||||
font-family: PingFang-SC, PingFang-SC;
|
||||
font-weight: 500;
|
||||
font-size: 30rpx;
|
||||
color: #d51c3c;
|
||||
}
|
||||
|
||||
.total-amount {
|
||||
font-family: PingFang-SC, PingFang-SC;
|
||||
font-weight: bold;
|
||||
font-size: 50rpx;
|
||||
color: #d51c3c;
|
||||
}
|
||||
|
||||
.member-benefit {
|
||||
.price-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8rpx;
|
||||
margin-left: 12rpx;
|
||||
background: rgba(255, 107, 0, 0.1);
|
||||
padding: 4rpx 12rpx;
|
||||
border-radius: 8rpx;
|
||||
flex-direction: column;
|
||||
|
||||
.crown-icon {
|
||||
width: 23rpx;
|
||||
height: 20rpx;
|
||||
.main-price {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
|
||||
.price-label {
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
margin-right: 8rpx;
|
||||
}
|
||||
|
||||
.price-symbol {
|
||||
font-size: 28rpx;
|
||||
color: #d51c3c;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.price-num {
|
||||
font-size: 44rpx;
|
||||
color: #d51c3c;
|
||||
font-weight: bold;
|
||||
font-family: DINAlternate-Bold, DINAlternate;
|
||||
}
|
||||
|
||||
.member-benefit {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6rpx;
|
||||
margin-left: 12rpx;
|
||||
background: rgba(255, 107, 0, 0.1);
|
||||
padding: 4rpx 10rpx;
|
||||
border-radius: 8rpx;
|
||||
white-space: nowrap;
|
||||
|
||||
.crown-icon {
|
||||
width: 23rpx;
|
||||
height: 20rpx;
|
||||
}
|
||||
|
||||
.benefit-text {
|
||||
font-weight: 500;
|
||||
font-size: 20rpx;
|
||||
color: #ff6b00;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.benefit-text {
|
||||
font-family: PingFang-SC, PingFang-SC;
|
||||
font-weight: 500;
|
||||
font-size: 20rpx;
|
||||
color: #ff6b00;
|
||||
.discount-section {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
margin-top: 4rpx;
|
||||
padding: 4rpx 12rpx;
|
||||
background-color: rgba(213, 28, 60, 0.08);
|
||||
border-radius: 20rpx;
|
||||
|
||||
.discount-text {
|
||||
font-size: 22rpx;
|
||||
color: #d51c3c;
|
||||
margin-right: 4rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.checkout-btn {
|
||||
color: #ffffff;
|
||||
font-family: PingFang-SC, PingFang-SC;
|
||||
font-weight: bold;
|
||||
font-size: 28rpx;
|
||||
border: none;
|
||||
width: 240rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
background: #004294;
|
||||
border-radius: 35rpx;
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
border-radius: 40rpx;
|
||||
color: #fff;
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
|
||||
&.disabled {
|
||||
background: #ccc;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -18,14 +18,14 @@
|
|||
:class="{ active: currentTab === 'pending_verification' }"
|
||||
@click="switchTab('pending_verification')"
|
||||
>
|
||||
<text class="tab-text">已完成</text>
|
||||
<text class="tab-text">待核销</text>
|
||||
</view>
|
||||
<view
|
||||
class="tab-item"
|
||||
:class="{ active: currentTab === 'chargeback' }"
|
||||
@click="switchTab('chargeback')"
|
||||
:class="{ active: currentTab === 'completed' }"
|
||||
@click="switchTab('completed')"
|
||||
>
|
||||
<text class="tab-text">已退款</text>
|
||||
<text class="tab-text">已完成</text>
|
||||
</view>
|
||||
<view
|
||||
class="tab-item"
|
||||
|
|
|
|||
Loading…
Reference in New Issue