jiangchengfeiyi-xiaochengxu/pages/coupon/component/couponPopup.vue

409 lines
8.0 KiB
Vue
Raw Normal View History

2025-02-24 07:24:22 +00:00
<template>
<view class="flex-col page">
<view class="flex-col">
<view class="flex-col section">
<view class="flex-row justify-center items-center relative group">
<text class="text">请选择优惠券</text>
<image
class="image pos"
2025-03-02 03:27:11 +00:00
:src="couponUrl + '/component/cha.png'"
2025-02-25 06:06:07 +00:00
@click="closeCoupon"
2025-02-24 07:24:22 +00:00
/>
</view>
<view class="flex-col mt-33">
<view class="flex-row justify-between group_2">
2025-02-25 06:06:07 +00:00
<text class="font" style="line-height: 70rpx;" @click="changeStateLeft(isShow)">可用</text>
<text class="font" style="line-height: 70rpx;" @click="changeStateRight(isShow)">不可用</text>
2025-02-24 07:24:22 +00:00
</view>
<view class="relative divider">
2025-02-25 06:06:07 +00:00
<view class="section_2 pos_2" v-show="isShow"></view>
<view class="section_2 pos_3" v-show="!isShow"></view>
2025-02-24 07:24:22 +00:00
</view>
</view>
</view>
2025-02-26 06:05:06 +00:00
<view class="flex-row justify-between section_3" @click="jumpToMall">
2025-02-24 07:24:22 +00:00
<text class="font_2 text_2">优惠券商城</text>
<image
class="image_2"
2025-03-02 03:27:11 +00:00
:src="couponUrl + '/component/yjt.png'"
2025-02-24 07:24:22 +00:00
/>
</view>
</view>
<view class="flex-col list">
2025-02-25 06:06:07 +00:00
<radio-group>
<view class="flex-col list-item mt-17" v-for="(item, index) in myCouponList" :key="index" @click="selectOne(index)">
<view class="flex-row justify-between self-stretch group_3" :style="borderStyle">
2025-02-24 07:24:22 +00:00
<view class="flex-row items-baseline self-start group_6">
2025-02-25 06:06:07 +00:00
<text class="font_3 text_4">{{item.couponVO.standardAmount}}</text>
2025-02-24 07:24:22 +00:00
<text class="font_4 text_5"></text>
</view>
<view class="flex-row items-center self-center group_4">
<view class="flex-col shrink-0 group_5">
2025-02-25 06:06:07 +00:00
<text class="self-start font text_3">{{item.couponVO.name}}</text>
<text class="self-stretch font_5 text_6 mt-11">{{item.couponVO.startTime.substr(0, 16)}}{{item.couponVO.endTime.substr(0, 16)}}</text>
2025-02-24 07:24:22 +00:00
</view>
<!-- <view class="ml-22 shrink-0 section_4"></view> -->
2025-02-25 06:06:07 +00:00
<radio class="ml-22 shrink-0 section_4" :value="index" :checked="checkedArr[index]"
color="#FFB5B8" v-show="isShow"></radio>
<view class="ml-22 shrink-0 section_4" v-show="!isShow"></view>
2025-02-24 07:24:22 +00:00
</view>
</view>
2025-02-25 06:06:07 +00:00
<text class="mt-14 self-start font_2 text_7" v-show="!isShow">未满足使用门槛</text>
2025-02-24 07:24:22 +00:00
</view>
</radio-group>
</view>
2025-02-25 11:33:59 +00:00
<view class="flex-row section_5">
<view class="flex-col justify-start items-center text-wrapper" @click="cancel">
2025-02-24 07:24:22 +00:00
<text class="font_6 text_8">不使用优惠券</text>
</view>
2025-02-25 11:33:59 +00:00
<view class="flex-col justify-start items-center text-wrapper_2" @click="confirm"><text class="font_6 text_9">确定</text></view>
2025-02-24 07:24:22 +00:00
</view>
</view>
</template>
2025-02-25 06:06:07 +00:00
2025-02-24 07:24:22 +00:00
<script setup lang="ts">
2025-02-25 06:06:07 +00:00
import {onMounted, ref} from 'vue'
import emitter from '../../../utils/emitter';
import { baseUrl } from '../../../api/request';
2025-02-26 06:05:06 +00:00
import { onShow } from "@dcloudio/uni-app";
2025-03-02 03:27:11 +00:00
import { couponUrl } from '../../../common/globalImagesUrl';
2025-02-25 06:06:07 +00:00
const checkedArr = ref([])
2025-02-26 06:05:06 +00:00
const idx = ref(-1)
2025-02-25 06:06:07 +00:00
const isShow = ref(true)
const borderStyle = ref({})
let totalAmount = 0
const myCouponList = ref([])
const cookie = wx.getStorageSync("cookie") //请求头
onMounted(() => {
emitter.on('getTotalPrice', (val:any) => {
totalAmount = val
getMyCouponList()
})
})
2025-02-26 06:05:06 +00:00
2025-02-25 06:06:07 +00:00
const changeStateLeft = (val:any) => {
if (!val) {
isShow.value = !isShow.value
borderStyle.value.borderBottom = 'solid 0px'
getMyCouponList()
}
}
const changeStateRight = (val:any) => {
if (val) {
isShow.value = !isShow.value
borderStyle.value.borderBottom = 'solid 1.88rpx #d9d9d9'
getMyCouponList()
}
}
const closeCoupon = () => {
emitter.emit('closeCoupon')
}
const selectOne = (val:any) => {
idx.value = val
for (var i = 0; i < checkedArr.value.length; i ++ ) {
if (i == val) {
checkedArr.value[i] = true
} else {
checkedArr.value[i] = false
}
}
}
const confirm = () => {
2025-02-26 06:05:06 +00:00
if (idx.value !== -1) {
emitter.emit('getCouponObj', myCouponList.value[idx.value])
}
2025-02-25 06:06:07 +00:00
emitter.emit('closeCoupon')
}
2025-02-25 11:33:59 +00:00
const cancel = () => {
emitter.emit('cancelCoupon')
emitter.emit('closeCoupon')
}
2025-02-25 06:06:07 +00:00
const getMyCouponList = async () => {
const res = await uni.request({
url: baseUrl + '/coupon/list/use',
method: 'POST',
header: {
cookie
},
data: {
currentAmount: totalAmount,
isAvailable: isShow.value
}
})
myCouponList.value = res.data.data
checkedArr.value = new Array(myCouponList.value.length).fill(false)
}
2025-02-26 06:05:06 +00:00
const jumpToMall = () => {
uni.navigateTo({
url: '/pages/coupon/CouponMall/CouponMall'
})
}
2025-02-24 07:24:22 +00:00
</script>
2025-02-25 06:06:07 +00:00
2025-02-24 07:24:22 +00:00
<style scoped lang="scss">
.mt-33 {
margin-top: 61.88rpx;
}
.mt-17 {
margin-top: 31.88rpx;
}
.mt-11 {
margin-top: 20.63rpx;
}
.page {
background-color: #f4f3f3;
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
2025-02-25 11:33:59 +00:00
position: fixed;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
2025-02-24 07:24:22 +00:00
}
.section {
padding-top: 41.25rpx;
background-color: #ffffff;
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
border-bottom: solid 1.88rpx #d9d9d9;
}
.group {
padding: 0 35.63rpx;
}
2025-02-25 06:06:07 +00:00
.text {
2025-02-24 07:24:22 +00:00
color: #323232;
font-size: 33.75rpx;
font-family: Inter;
line-height: 31.18rpx;
}
.image {
width: 37.5rpx;
height: 37.5rpx;
}
.pos {
position: absolute;
right: 35.63rpx;
top: 50%;
transform: translateY(-50%);
}
.group_2 {
2025-02-25 06:06:07 +00:00
padding: 0 138.75rpx 0 157.5rpx;
2025-02-24 07:24:22 +00:00
}
.font {
font-size: 30rpx;
font-family: Inter;
line-height: 25.65rpx;
color: #323232;
}
.divider {
height: 5.63rpx;
}
.section_2 {
background-color: #ff3c3c;
width: 80.63rpx;
height: 5.63rpx;
}
.pos_2 {
position: absolute;
left: 144.38rpx;
top: 0;
}
.pos_3 {
position: absolute;
right: 144.38rpx;
top: 0;
}
.section_3 {
padding: 22.5rpx 33.75rpx 22.5rpx 41.25rpx;
background-color: #ffffff;
}
.image_2 {
width: 26.25rpx;
height: 22.5rpx;
}
.list {
2025-02-25 06:06:07 +00:00
padding: 31.88rpx 22.5rpx 31.88rpx;
height: 70%;
overflow-y: auto;
}
.list::-webkit-scrollbar {
display: none;
2025-02-24 07:24:22 +00:00
}
.list-item {
padding-bottom: 18.75rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.list-item:first-child {
margin-top: 0;
}
.group_3 {
padding: 33.75rpx 37.5rpx 18.75rpx;
}
.group_6 {
margin-top: 26.25rpx;
width: 81.6rpx;
}
.font_3 {
font-size: 45rpx;
font-family: Inter;
line-height: 33.81rpx;
font-weight: 600;
color: #c35c5d;
}
.text_4 {
margin-left: 26.25rpx;
}
.font_4 {
font-size: 30rpx;
font-family: Inter;
line-height: 21.64rpx;
color: #c35c5d;
}
.text_5 {
margin-left: -82.5rpx;
}
.group_4 {
margin-right: 7.5rpx;
}
.group_5 {
width: 365.66rpx;
}
.text_3 {
font-size: 28.13rpx;
line-height: 25.91rpx;
}
.font_5 {
font-size: 26.25rpx;
font-family: Inter;
line-height: 30rpx;
color: #000000;
}
.text_6 {
font-size: 24.38rpx;
}
.section_4 {
background-color: #ffffff;
border-radius: 75rpx;
width: 33.75rpx;
height: 33.75rpx;
}
.font_2 {
font-size: 26.25rpx;
font-family: Inter;
line-height: 25.65rpx;
color: #323232;
}
.text_2 {
line-height: 24.28rpx;
}
.text_7 {
margin-left: 30rpx;
line-height: 24.34rpx;
}
.section_5 {
2025-02-25 06:06:07 +00:00
margin-top: 50.75rpx;
2025-02-24 07:24:22 +00:00
padding: 15rpx 46.88rpx;
background-color: #ffffff;
2025-02-25 06:06:07 +00:00
position: fixed;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
2025-02-24 07:24:22 +00:00
}
.text-wrapper {
padding: 26.25rpx 0;
flex: 1 1 328.13rpx;
background-color: #ff3c3cad;
border-radius: 93.75rpx 0rpx 0rpx 93.75rpx;
height: 82.5rpx;
}
.font_6 {
font-size: 30rpx;
font-family: Inter;
color: #ffffff;
}
.text_8 {
line-height: 27.81rpx;
}
.text-wrapper_2 {
padding: 26.25rpx 0;
flex: 1 1 328.13rpx;
background-color: #ffb5b8;
border-radius: 0rpx 93.75rpx 93.75rpx 0rpx;
height: 82.5rpx;
}
.text_9 {
line-height: 27.79rpx;
}
@import url(../../../common/css/global.css);
</style>