联系人弹窗修改,购物车防抖

This commit is contained in:
yuanteng0011 2025-02-27 14:22:52 +08:00
parent 070afad323
commit 81ac7d70ac
10 changed files with 714 additions and 73 deletions

View File

@ -1,5 +1,12 @@
{
"pages": [
{
"path" : "pages/order/service-paystatus/service-paystatus",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/book/photoProductsOrder/photoProductsOrder",
"style" :

View File

@ -24,20 +24,15 @@
<checkbox class="shrink-0 self-center image_3 round red" :value="index" :checked="item.checked" />
<view class="flex-row items-end flex-1 self-center ml-22">
<image class="shrink-0 image_2" :src="item.cartGoodVO.goodImg.split(';')[0]"
@click="jump_product(item.goodId)" />
@click="jump_product(item.goodId)" :style="{ pointerEvents: isLoading ? 'none' : 'auto' }"/>
<view class="flex-col flex-1 group_2">
<view class="flex-row justify-center group_3">
<view class="flex-row justify-center group_3" :style="{ pointerEvents: isLoading ? 'none' : 'auto' }">
<text class="font_3 text_5" @click="jump_product(item.goodId)">{{ item.cartGoodVO.name }}</text>
<text class="font_3" @click="jump_product(item.goodId)">{{ item.cartGoodVO.type }}</text>
</view>
<view class="flex-row justify-between items-center mt-46">
<view class="flex-row items-end">
<view class="flex-row items-end" :style="{ pointerEvents: isLoading ? 'none' : 'auto' }">
<text class="font_4 text_6" @click="jump_product(item.goodId)">{{ item.cartGoodVO.price }}</text>
<!-- <image
class="shrink-0 image_6"
src="https://ide.code.fun/api/image?token=6779d8c1797f850011f55ea9&name=babcf6110b7f4238c5be5c44afb0a800.png"
/>
<text class="font_5 text_7">00</text> -->
</view>
<!-- 减少数量 -->
<image class="image_4"
@ -81,7 +76,8 @@
<view class="flex-row ml-83">
<image class="image_10"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVBaGfZxE-short.png"
@click="decrease(index , item.checked)" />
@click="decrease(index , item.checked)"
/>
<view class="flex-col justify-start items-center text-wrapper_2 ml-2"><text
class="font_6">{{ item.quantity }}</text>
</view>
@ -108,11 +104,13 @@
<view class="flex-row items-center">
<text class="font_2 text_12">合计{{ totalPrice }}</text>
<view class="flex-col justify-start items-center shrink-0 text-wrapper_3 ml-7">
<text class="font_4 text_13" @click="editOrSettle">{{ stateText.bottomBtn }}</text>
<text class="font_4 text_13" @click="editOrSettle" :style="{ pointerEvents: isLoading ? 'none' : 'auto' }">{{ stateText.bottomBtn }}</text>
</view>
</view>
</view>
</view>
<!-- 遮罩层 -->
<view v-if="isShow" class="overlay"></view>
</template>
<script setup>
@ -130,11 +128,13 @@
topBtn: '编辑',
bottomBtn: '去结算'
})
const updateArr = ref([]) //()
//
const serviceProduct = ref([])
const errorArr = ref([]) //id
onShow(() => {
getProductCart() //
totalPrice.value = 0 //
})
onLoad(() => {
getProductCart() //
@ -299,8 +299,8 @@
}
//()
const decrease = (index, item) => { //item
console.log('decrease,index-->', index);
console.log('decrease,item-->', item);
// console.log('decrease,index-->', index);
// console.log('decrease,item-->', item);
if (products.value[index].quantity > 1) {
products.value[index].quantity -= 1
if (item && products.value[index].quantity >= 1 && current.value === 1) {
@ -308,20 +308,28 @@
} else if(item && products.value[index].quantity >= 1 && current.value === 2) {
computed(-products.value[index].cartExperienceGoodVO.price, 1)
}
cartFd() //
}
}
//()
const increase = (index, item) => { //item
console.log('increase,index-->', index);
console.log('increase,item-->', item);
if ( current.value === 1) {
if (item && products.value[index].quantity <= products.value[index].cartGoodVO.inventory) {
computed(products.value[index].cartGoodVO.price, 1)
const increase = (index, item) => { //item,obj,index
// console.log('increase,index-->', index);
// console.log('increase,item-->', item);
if ( current.value === 1) { //
if (products.value[index].quantity <= products.value[index].cartGoodVO.inventory) {
if(item) {
computed(products.value[index].cartGoodVO.price, 1)
}
products.value[index].quantity += 1
cartFd() //
}
} else if (current.value === 2) { //
} else if (current.value === 2) {
if(products.value[index].quantity < products.value[index].restNumber) {
products.value[index].quantity += 1
if(item) {
computed(products.value[index].cartExperienceGoodVO.price, 1)
}
cartFd()
}
}
}
@ -463,9 +471,93 @@
}
})
}
//
let debounceTimer = null;
let wxPayTimer = null;
let loading = false;
let isLoading = ref(false)
let isShow = ref(false)
const cartFd = () => { //
clearTimeout(debounceTimer)
showLoading()
debounceTimer = setTimeout(async () => {
await updateCart()
hideLoading()
}, 1000)
}
function showLoading() { //
if (!loading) {
wx.showLoading({
title: '加载中...',
});
loading = true;
isLoading.value = true
}
}
function hideLoading() { //
if (loading) {
wx.hideLoading();
loading = false;
isLoading.value = false
}
}
const updateCart = async () => { //
if(current.value === 1) {
// console.log('product--->',products.value);
updateArr.value.splice(0,updateArr.value.length)
products.value.forEach((item)=> {
updateArr.value.push({
id: item.id,
quantity: item.quantity
})
})
const res = await uni.request({
url: baseUrl + '/cart/update',
method: 'POST',
header: {
'cookie': wx.getStorageSync('cookie')
},
data: toRaw(updateArr.value)
})
if(res.data.code === 1) {
console.log('更新成功');
}
} else if(current.value === 2) {
updateArr.value.splice(0,updateArr.value.length)
products.value.forEach((item)=> {
updateArr.value.push({
id: item.id,
quantity: item.quantity,
reservationDate: item.reservationDate,
timeSlot: item.timeSlot
})
})
console.log('防抖数组--->',updateArr.value);
const res = await uni.request({
url: baseUrl + '/cartExperience/update',
method: 'POST',
header: {
'cookie': wx.getStorageSync('cookie')
},
data: toRaw(updateArr.value)
})
if(res.data.code === 1) {
console.log('更新成功');
}
}
}
</script>
<style lang="scss" scoped>
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色背景 */
z-index: 999;
}
.ml-17 {
margin-left: 31.88rpx;
}

View File

@ -45,7 +45,7 @@
const popup = ref(null) //
onMounted(() => {
getContactInfo() //
emitter.on('close',()=>{
emitter.on('closeContactPop',()=>{
close()
})
emitter.on('updateInfo',()=>{ //

View File

@ -15,7 +15,7 @@
<view class="flex-row justify-between items-center group_2">
<checkbox-group @change="defaultAddress">
<text class="font_2 text_5" style="margin-right: 400rpx;">设为默认联系人</text>
<checkbox class="round red radius" value="1" />
<checkbox class="round red radius" value="1" :checked="checked"/>
</checkbox-group>
</view>
</view>
@ -33,29 +33,33 @@ const contactParam = ref({
phone: "",
isDefault: 0
})
//
const checked = ref(false) //
onLoad(()=>{
})
onShow(()=>{
})
onMounted(()=>{
emitter.on('contactInfo',(val)=>{
emitter.on('contactInfo',(val)=>{ //
console.log('当前编辑的联系人信息',val);
if(val != null) {
contactParam.value.id = val.id
contactParam.value.name = val.name
contactParam.value.phone = val.phone
contactParam.value.isDefault = val.isDefault
val.isDefault ? checked.value = true : checked.value = false
}
})
defaultAddress()
})
//
const defaultAddress =(event)=>{
event.detail.value[0] ? contactParam.value.isDefault = 1 : contactParam.value.isDefault = 0
event.detail.value[0] ? checked.value = true : checked.value = false
console.log('event--->',event);
}
//
const newContact = async () =>{
console.log('按钮联系人信息--->',contactParam.value);
// console.log('--->',contactParam.value);
if(contactParam.value.id === "")
delete contactParam.value.id
const values = Object.values(contactParam.value);
@ -67,7 +71,7 @@ const newContact = async () =>{
})
return;
}
console.log(contactParam.value);
// console.log(contactParam.value);
if(contactParam.value.id != undefined) {
const res = await uni.request({
url: baseUrl + '/contacts/update',
@ -77,7 +81,7 @@ const newContact = async () =>{
},
data: { ...contactParam.value }
})
console.log('res1==>',res.data);
// console.log('res1==>',res.data);
sucRes(res.data.code)
} else {
const res = await uni.request({
@ -92,14 +96,14 @@ const newContact = async () =>{
isDefault: contactParam.value.isDefault
}
})
console.log('res2==>',res.data);
// console.log('res2==>',res.data);
sucRes(res.data.code)
}
}
const sucRes =(res)=>{ //
if(res === 1) {
emitter.emit('updateInfo')
closePop()
emitter.emit('updateInfo')
} else {
uni.showToast({
icon: 'error',

View File

@ -10,7 +10,7 @@
<view class="flex-col list-item_1" v-for="(item, index) in addressList" :key="index">
<view class="flex-row justify-between items-center self-stretch">
<view class="flex-row items-center">
<radio color="#00ba9c" :value="index" :checked="index === current"></radio>
<radio color="#00ba9c" :value="index" :checked="item.isDefault === 1"></radio>
<text class="font ml-9">{{ item.name }}</text>
<text class="font_2 ml-9">{{ item.phone }}</text>
</view>
@ -108,7 +108,6 @@ const closeWindow =()=> {
.ml-9 {
margin-left: 16.88rpx;
}
.page {
padding-top: 18.75rpx;
background-color: #f5f5dc;

View File

@ -17,7 +17,7 @@
:key="index"
>
<view class="flex-row items-center">
<radio color="#E79EA1" :value="index" :checked="index === current"></radio>
<radio color="#E79EA1" :value="index" :checked="item.isDefault === 1"></radio>
<text class="font ml-9">{{ item.name }}</text>
<text class="font_2 ml-9">{{ item.phone }}</text>
</view>
@ -36,8 +36,8 @@
</view>
</radio-group>
</view>
<view class="flex-col justify-start items-center self-stretch text-wrapper mt-22">
<text class="text_2" @click="loadPop()">添加联系人</text>
<view class="flex-col justify-start items-center self-stretch text-wrapper mt-22" @click="loadPop()">
<text class="text_2">添加联系人</text>
</view>
</view>
<uni-popup ref="popup" background-color="#fff" :mask-click="false">
@ -53,9 +53,11 @@
import { onShow, onLoad } from "@dcloudio/uni-app";
import emitter from '../../../utils/emitter';
import contactPopVue from '../../mine/component/contactPop.vue'; //
const ContactArr = ref() //
const ContactArr = ref([]) //
const popup = ref(null) //
onMounted(() => {
const selectedContact = ref() //
const current = ref(0) //
onMounted( async () => {
getContactInfo() //
emitter.on('closeContactPop',()=>{
closeContactPop()
@ -124,10 +126,9 @@
}
//
const radioChange = ( event ) => {
console.log('选中---->',event);
// console.log('---->',event);
const index = event.detail.value
const temp = ContactArr.value[index]
console.log('联系人是---->',ContactArr.value[index]);
emitter.emit('contactsNowInfo',temp) //
emitter.emit('close')
}
@ -139,7 +140,7 @@
}
})
}
const closeWindow =()=> {
const closeWindow =()=> { ///
emitter.emit('close')
}
</script>

View File

@ -0,0 +1,473 @@
<template>
<view class="flex-col page">
<view class="flex-row items-center section_2">
<image
class="image"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=43f9d33cbaf7205072a2e1cd43931990.png"
/>
<view class="flex-col items-start flex-1 ml-6">
<text class="font text">等待买家付款</text>
<text class="text_2 mt-4">请于13分51秒内付款超时订单将自动关闭</text>
</view>
</view>
<view class="flex-row items-center section_3">
<image
class="image_2"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=d96aebb563e235fbf33e14d78237c796.png"
/>
<text class="text_3 ml-10">张三 15888610253</text>
</view>
<view class="flex-col section_4">
<view class="flex-col">
<view class="flex-row items-end list-item group mt-17" v-for="(item, index) in items" :key="index">
<image
class="shrink-0 image_3"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=5b1e63a77141ce1c8fc2514061052c99.png"
/>
<view class="flex-col flex-1 group_5">
<view class="flex-row self-stretch group_3">
<text class="font_2">非遗绒花</text>
<text class="font_2 text_8">材料包手工教程课</text>
</view>
<text class="self-start font text_9">已选时间12月9号星期二</text>
<text class="self-start font_3 text_10">10:00-12:00</text>
<view class="flex-row items-center self-stretch group_23">
<image
class="image_4"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=4a3c5c3a5c83be7a7b0551c598ed6037.png"
/>
<text class="font_4 ml-3">138.</text>
<text class="font_5 ml-3">00</text>
</view>
</view>
<text class="font_6 text_11 text_1">×1</text>
</view>
</view>
<view class="flex-row justify-between items-center group_8">
<text class="font text_16">商品金额</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_5"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=4223cdafed72fca52c442dae885cee9c.png"
/>
<text class="font_7 text_17">138.00</text>
</view>
</view>
<view class="flex-row justify-between items-center group_9">
<text class="font">优惠券</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_6"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=shortmoney.png"
/>
<text class="font_7 text_18">50.00</text>
</view>
</view>
<view class="flex-row justify-end items-center group_10">
<view class="flex-row items-center group_11">
<image
class="image_5 image_7"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=15c19bceb4f8bbcc0ed72958e3788b20.png"
/>
<text class="font_2 text_19">合计</text>
</view>
<text class="font_7 text_20">88.00</text>
</view>
<view class="flex-col group_12">
<text class="self-start font text_21">买家留言</text>
<view class="flex-col justify-start self-stretch relative group_13 mt-5">
<view class="group_14"></view>
<text class="font text_22 pos_4">
希望所使用的材料是可持续来源的并且制作工艺要精细以确保每一朵花瓣都能生动地展现出绒花的质感和美感
</text>
</view>
</view>
<view class="flex-row justify-between items-center group_15">
<text class="font text_23">订单编号</text>
<view class="flex-row items-center group_16">
<view class="flex-col justify-start items-center text-wrapper"><text class="text_25">复制</text></view>
<text class="font_5 text_24">E20241005095840091406189</text>
</view>
</view>
<view class="flex-row justify-between items-center group_17">
<text class="font text_26">创建时间</text>
<text class="font_5 text_27">2024-10-05 09:58:41</text>
</view>
<view class="flex-col group_18">
<view class="flex-row justify-between items-baseline group_21">
<text class="font text_28">退款时间</text>
<text class="font_5 text_29">2024-10-05 11:47:08</text>
</view>
<view class="flex-row justify-between items-baseline mt-3">
<text class="font text_30">成交时间</text>
<text class="font_5 text_31">2024-10-05 11:47:08</text>
</view>
</view>
</view>
<view class="flex-row items-center section_5">
<view class="flex-row items-center shrink-0">
<text class="font_8 text_32">合计</text>
<image
class="shrink-0 image_8"
src="https://ide.code.fun/api/image?token=67c001c94ae84d0012277299&name=549b29459342a9a09d24834be40eb53b.png"
/>
<text class="text_33">88.</text>
<text class="font_6 text_36">00</text>
</view>
<view class="flex-row flex-1 ml-46">
<view class="flex-col justify-start items-center text-wrapper_2">
<text class="font_8 text_34">联系客服</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_3 ml-6">
<text class="font_8 text_35">去支付</text>
</view>
</view>
</view>
</view>
</template>
<script setup>
const items = [null,null,null,null,null,null]
</script>
<style lang="scss" scoped>
.ml-3 {
margin-left: 5.63rpx;
}
.mt-17 {
margin-top: 31.88rpx;
}
.mt-5 {
margin-top: 9.38rpx;
}
.mt-3 {
margin-top: 5.63rpx;
}
.page {
padding-top: 26.25rpx;
background-color: #f8e8c1;
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png');
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100vh;
}
.section_2 {
margin-left: 16.88rpx;
margin-right: 15rpx;
padding: 16.88rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.image {
width: 75rpx;
height: 75rpx;
}
.font {
font-size: 26.25rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 25.54rpx;
color: #818181;
}
.text {
color: #323233;
font-size: 28.13rpx;
line-height: 27.58rpx;
}
.text_2 {
color: #6b6e72;
font-size: 22.5rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 22.14rpx;
}
.section_3 {
margin: 26.25rpx 15rpx 0 16.88rpx;
padding: 20.63rpx 24.38rpx 24.98rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.image_2 {
width: 65.63rpx;
height: 67.5rpx;
}
.text_3 {
color: #818181;
font-size: 37.5rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 32.38rpx;
}
.section_4 {
margin: 25.65rpx 15rpx 0 16.88rpx;
padding: 20.63rpx 22.63rpx 9.79rpx 24.38rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.list-item {
padding: 0 11.25rpx;
}
.list-item:first-child {
margin-top: 0;
}
.group {
padding: 0 7.5rpx;
}
.image_3 {
border-radius: 9.38rpx;
width: 142.5rpx;
height: 166.88rpx;
}
.group_5 {
margin-left: 30.04rpx;
margin-top: 4.2rpx;
}
.group_3 {
padding-left: 3.83rpx;
}
.font_2 {
font-size: 26.25rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 25.54rpx;
color: #323232;
}
.text_8 {
line-height: 25.01rpx;
}
.text_9 {
margin-left: 8.01rpx;
margin-top: 18.21rpx;
line-height: 24.62rpx;
}
.font_3 {
font-size: 26.25rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 17.53rpx;
color: #818181;
}
.text_10 {
margin-left: 9.21rpx;
margin-top: 19.99rpx;
}
.group_23 {
margin-top: 27.58rpx;
}
.image_4 {
width: 35.63rpx;
height: 30rpx;
}
.font_4 {
font-size: 33.75rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 22.54rpx;
color: #323232;
}
.font_5 {
font-size: 26.25rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 17.53rpx;
color: #323232;
}
.font_6 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.54rpx;
color: #323232;
}
.text_11 {
margin-left: 39.99rpx;
margin-bottom: 2.66rpx;
line-height: 21.41rpx;
}
.text_1 {
margin: 0 7.88rpx 2.66rpx 39.99rpx;
}
.group_8 {
margin-top: 21.71rpx;
}
.text_16 {
line-height: 24.3rpx;
}
.image_5 {
width: 30rpx;
height: 30rpx;
}
.font_7 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 17.53rpx;
color: #323232;
}
.text_17 {
line-height: 19.41rpx;
}
.group_9 {
margin-top: 13.13rpx;
}
.image_6 {
width: 41.25rpx;
height: 30rpx;
}
.text_18 {
line-height: 19.41rpx;
}
.group_10 {
margin-top: 16.88rpx;
}
.group_11 {
width: 102.3rpx;
}
.image_7 {
margin-left: 72.3rpx;
}
.text_19 {
margin-left: -102.3rpx;
line-height: 24.3rpx;
}
.text_20 {
color: #ffaaa5;
line-height: 19.41rpx;
}
.group_12 {
margin-top: 15rpx;
padding: 29.19rpx 0 16.88rpx;
border-top: solid 1.88rpx #dfdfdf;
border-bottom: solid 1.88rpx #dfdfdf;
}
.text_21 {
margin-left: 2.36rpx;
line-height: 24.71rpx;
}
.group_13 {
margin-right: 3.62rpx;
padding-top: 9.86rpx;
}
.group_14 {
border-radius: 9.38rpx;
height: 84.38rpx;
border: solid 1.88rpx #ffffff;
}
.text_22 {
line-height: 31.88rpx;
text-shadow: 0 1.88rpx #ffffff, 0 -1.88rpx #ffffff, 1.88rpx 0 #ffffff, -1.88rpx 0 #ffffff;
text-indent: 54.45rpx;
}
.pos_4 {
position: absolute;
left: 12.17rpx;
right: 25.33rpx;
top: 50%;
transform: translateY(-50%);
}
.group_15 {
margin-top: 15.36rpx;
}
.text_23 {
line-height: 25.84rpx;
}
.group_16 {
margin-right: 3.62rpx;
width: 368.34rpx;
}
.text-wrapper {
margin-left: 317.72rpx;
padding-bottom: 2.31rpx;
background-color: #ffffff;
width: 50.63rpx;
height: 22.5rpx;
border: solid 0.94rpx #d1d1d1;
}
.text_25 {
color: #323232;
font-size: 18.75rpx;
font-family: Open Sans;
line-height: 17.36rpx;
}
.text_24 {
margin-left: -368.34rpx;
}
.group_17 {
margin-top: 10.24rpx;
}
.text_26 {
line-height: 24.71rpx;
}
.text_27 {
margin-right: 132.38rpx;
}
.group_18 {
margin-top: 11.12rpx;
}
.group_21 {
padding: 0 2.38rpx;
}
.text_28 {
line-height: 24.51rpx;
}
.text_29 {
margin-right: 137.49rpx;
}
.text_30 {
line-height: 24.51rpx;
}
.text_31 {
margin-right: 139.88rpx;
}
.section_5 {
position: fixed;
left: 0;
right: 0;
bottom: 0;
// margin-top: 131.25rpx;
padding: 16.88rpx 15rpx 15rpx 25.31rpx;
background-color: #ffffff;
}
.font_8 {
font-size: 30rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 27.77rpx;
}
.text_32 {
color: #000000;
}
.image_8 {
width: 33.75rpx;
height: 33.75rpx;
}
.text_33 {
color: #ffaaa5;
font-size: 37.5rpx;
font-family: Open Sans;
font-weight: 700;
line-height: 27.62rpx;
}
.text_36 {
color: #ffaaa5;
font-weight: 700;
line-height: 22.05rpx;
}
.text-wrapper_2 {
padding: 17.81rpx 0 20.51rpx;
flex: 1 1 204.38rpx;
background-color: #ffffff;
border-radius: 75rpx;
height: 71.25rpx;
border: solid 1.88rpx #e1e1e1;
}
.text_34 {
color: #ffaaa5;
line-height: 29.18rpx;
}
.text-wrapper_3 {
padding: 20.63rpx 0 22.86rpx;
flex: 1 1 204.38rpx;
background-color: #ffaaa5;
border-radius: 75rpx;
height: 71.25rpx;
}
.text_35 {
color: #ffffff;
}
@import url(../../../common/css/global.css);
</style>

View File

@ -119,7 +119,7 @@
<text class="text_18">{{ sumprice.toFixed(2) }}</text>
<!-- <text class="text_20">00</text> -->
</view>
<view class="flex-col justify-start items-center text-wrapper_3"><text class="font_8 text_19">微信支付</text></view>
<view class="flex-col justify-start items-center text-wrapper_3" @click="wxPayFd()"><text class="font_8 text_19">微信支付</text></view>
</view>
</view>
<uni-popup ref="popup" background-color="#fff" :mask-click="false">
@ -127,6 +127,8 @@
<contactsComponentVue></contactsComponentVue>
</view>
</uni-popup>
<!-- 遮罩层 -->
<view v-if="isShow" class="overlay"></view>
</template>
<script setup>
@ -136,7 +138,8 @@
import { baseUrl } from '../../../api/request';
import { stateMap } from '../../../common/global';
import { sum } from 'mathjs';
import contactsComponentVue from '../component/contactsComponent.vue'; //
import contactsComponentVue from '../component/contactsComponent.vue'; //\
import contactPopVue from '../../mine/component/contactPop.vue'; //
//
const sumprice = ref(0) //
const popup = ref(null) //
@ -156,7 +159,7 @@
emitter.on('close', () => {
close()
})
//
//
emitter.on('contactsNowInfo', (val) =>{
contactRealInfo.value = val
})
@ -169,7 +172,7 @@
})
onShow(()=>{
userInfo.value = wx.getStorageSync('userInfo') //
getDefaultAddress()
getDefaultContact()
// computed()
})
//
@ -185,27 +188,30 @@
popup.value.open('bottom')
}
//
// const getDefaultAddress = async () =>{
// const res = await uni.request({
// url: baseUrl + '/address/list',
// method: 'POST',
// header: {
// cookie: wx.getStorageSync('cookie')
// }
// })
// //for
// for(let key in res.data.data) {
// if(res.data.data[key].isDefault === 1) {
// contactRealInfo.value = res.data.data[key]
// }
// }
// }
const getDefaultContact = async () =>{
const res = await uni.request({
url: baseUrl + '/contacts/list',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
}
})
if(res.data.code === 1) {
console.log('联系人数组---->',res.data.data);
}
//for
for(let key in res.data.data) {
if(res.data.data[key].isDefault === 1) {
contactRealInfo.value = res.data.data[key]
}
}
}
const createOrder = async () => { //
console.log('地址信息-->',contactRealInfo.value);
console.log('联系人信息-->',contactRealInfo.value);
formatArr()
console.log('postCartArr--->',postCartArr.value);
const resOrder = await uni.request({ //
url: baseUrl + '/order/add/cart',
url: baseUrl + '/order/add/experience/cart',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
@ -213,8 +219,7 @@
data: {
orderType: productArr.value[0].cartExperienceGoodVO.type === '服务类' ? 'service' : 'product',
userName: userInfo.userName,
addressId: addressRealInfo.value.id, //id
// contactsId: null, //id
contactsId: contactRealInfo.value.id, //id
couponId: null, //id
note: note.value,
cartOrderItemAddRequestList: toRaw(postCartArr.value)
@ -260,16 +265,16 @@
}
//
const addNum = (index)=>{
if( productArr.value[index].quantity < productArr.value[index].cartExperienceGoodVO.inventory ) { //
if( productArr.value[index].quantity < productArr.value[index].restNumber ) { //
productArr.value[index].quantity += 1
sumprice.value += productArr.value[index].cartExperienceGoodVO.price * 1 //
}
}
const formatArr = () =>{
const formatArr = () =>{ //
postCartArr.value.splice(0,postCartArr.value.length)
productArr.value.forEach((item,index)=>{
postCartArr.value.push({
cartRecordId: totalInfo.value[index],
cartExperienceId: totalInfo.value[index],
quantity: item.quantity
})
})
@ -299,17 +304,13 @@
showCancel: false
})
uni.redirectTo({
url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
})
console.log('支付成功res--->',res);
},
fail(e) {
// uni.showModal({
// content: ':' + e.errMsg,
// showCancel: false
// })
uni.redirectTo({
url: '/pages/order/product-paysuccess/product-paysuccess?oid=' + JSON.stringify(oid)
url: '/pages/order/service-paystatus/service-paystatus?oid=' + JSON.stringify(oid)
})
console.log('e.errMsg--->',e.errMsg);
}
@ -339,9 +340,73 @@
}
})
}
//
let debounceTimer = null;
let wxPayTimer = null;
let loading = false;
let isLoading = ref(false)
let isShow = ref(false)
const fd = () => { //
clearTimeout(debounceTimer)
showLoading()
debounceTimer = setTimeout(async () => {
await getMyCouponList()
hideLoading()
}, 1000)
}
const wxPayFd = () => { //
clearTimeout(wxPayTimer)
showLoading()
isShow.value = true
wxPayTimer = setTimeout(async () => {
await createOrder()
}, 1000)
}
function showLoading() { //
if (!loading) {
wx.showLoading({
title: '加载中...',
});
loading = true;
isLoading.value = true
}
}
function hideLoading() { //
if (loading) {
wx.hideLoading();
loading = false;
isLoading.value = false
}
}
const getMyCouponList = async () => { //
const res = await uni.request({
url: baseUrl + '/coupon/list/use',
method: 'POST',
header: {
cookie
},
data: {
currentAmount: sumprice.value,
isAvailable: true
}
})
myCouponList.value = res.data.data
templateString.value = myCouponList.value.length + '张优惠券可用'
console.log('============================>', myCouponList.value)
}
</script>
<style lang="scss" scoped>
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色背景 */
z-index: 999;
}
.mt-13 {
margin-top: 24.38rpx;
}

View File

@ -313,7 +313,7 @@ const textColor = ref('')
let isLoading = ref(false)
let isShow = ref(false)
const fd = () => {
const fd = () => { //
clearTimeout(debounceTimer)
showLoading()
debounceTimer = setTimeout(async () => {

View File

@ -46,11 +46,11 @@
<text class="font_3 mt-9">{{ item.intro }}</text>
<text class="font_4 text_5 text_1 mt-9">{{ item.price }}</text>
</view>
<image
<!-- <image
class="self-start image_5"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FhuDBpAGx-add.png"
@click.stop
/>
/> -->
</view>
</scroll-view>
</view>