给后端使用的版本

This commit is contained in:
yuanteng0011 2025-01-02 10:12:11 +08:00
parent f1a76acdff
commit 20ac0825b0
4 changed files with 15769 additions and 0 deletions

36
common/global.js Normal file
View File

@ -0,0 +1,36 @@
export const stateList = [
{
state: '待支付',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png',
msg: '等待买家付款'
},
{
state: '待发货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
msg: '等待卖家发货'
},
{
state: '已退款',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
msg: '订单已经退款'
},
{
state: '待收货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
msg: '商品已发货,注意查收'
},
{
state: '交易成功',
img: '',
msg: '订单完成,感谢您的支持'
},
{
state: '交易关闭',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png',
msg: '您的订单已关闭'
}
]
export const stateMap = new Map()
stateList.forEach((item)=>{
stateMap.set(item.state,item)
})

View File

@ -0,0 +1,60 @@
<template>
<view>
<uni-data-picker v-slot:default="{data, error, options}" :localdata="items" popup-title="选择省//" @change="onchange" @nodeclick="onnodeclick">
<view class="picker" :style="pik">{{ tempSelected }}</view>
</uni-data-picker>
</view>
</template>
<script setup>
import {ref, onMounted} from 'vue'
import data from './area.json'
import emitter from '../../../utils/emitter';
const items = ref(data)
const selected = ref('选择省/市/区')
const selectedItem = ref([])
const pik = ref({color: '#CFCFCF'})
const tempSelected = ref('选择省/市/区')
onMounted(() => {
emitter.on('addRegion', (val) => {
selected.value = val
pik.value.color = "#000"
if(selected.value.length > 11) tempSelected.value = selected.value.slice(0, 11) + '...'
else tempSelected.value = selected.value
})
})
const onchange = (e) => {
selectedItem.value = e.detail.value
selected.value = ""
selectedItem.value.map((it, index) => {
selected.value += it.text
if(index != 2)
selected.value += "/"
})
if(selected.value.length > 11) tempSelected.value = selected.value.slice(0, 11) + '...'
else tempSelected.value = selected.value
pik.value.color = "#000"
emitter.emit('region', selected.value)
}
const close = () => {
emitter.emit('close')
}
const onnodeclick = (node) => {
console.log(node)
}
</script>
<style lang="scss" scoped>
.picker{
font-size: 35rpx;
line-height: 100rpx;
}
</style>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,664 @@
<!-- 单个商品购买页面 -->
<template>
<view class="flex-col justify-start relative page">
<view class="flex-col group_1">
<!-- 地址信息 -->
<view class="flex-col section_2">
<view class="flex-row justify-between">
<view class="flex-col">
<text class="self-center font text">{{ addressRealInfo.region }}</text>
<view class="flex-row items-center self-stretch">
<image
class="shrink-0 image"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FXZHjzkRH-dingwei.png"
/>
<text class="font_2 text_2 ml-8">{{ addressRealInfo.detailAddress }}</text>
</view>
</view>
<view class="flex-row self-start group" @click="loadPop">
<text class="font_3 text_3">更换地址</text>
<image
class="shrink-0 image_2"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FfhDZdkOK-rightpink.png"
/>
</view>
</view>
<view class="flex-row items-center group_2 mt-4">
<text class="font_2 text_4">{{ addressRealInfo.name }}</text>
<text class="font_2 text_5">手机:{{ addressRealInfo.phone }}</text>
</view>
</view>
<!-- 商品信息 -->
<view class="flex-col section_3">
<view class="flex-col self-stretch">
<view class="flex-row items-end group_18">
<view class="flex-row items-end flex-1 group_19">
<image
class="shrink-0 image_3 image_4"
:src="productObject.goodImg.split(';')[0]"
/>
<view class="flex-col flex-1 ml-17">
<view class="flex-row">
<text class="font">{{ productObject.name }}</text>
<text class="font text_1">{{ productObject.type }}</text>
</view>
<view class="flex-row items-center mt-52">
<image
class="image_7"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FjIVFaWXA-rmb.png"
/>
<text class="font_4 ml-2">{{ productObject.price }}</text>
<!-- <text class="font_6 text_27 ml-2">00</text> -->
</view>
</view>
</view>
<view class="flex-row shrink-0 ml-21">
<image
class="image_5"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJYaNIhRB-short.png"
@click="shortNum"
/>
<view class="flex-col justify-start items-center text-wrapper ml-2"><text class="font_5">{{ quantity }}</text></view>
<image
class="image_6 ml-2"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FXbkFIxCw-add.png"
@click="addNum"
/>
</view>
</view>
</view>
<view class="flex-row items-center self-center mt-48" style="margin-top: 56rpx;">
<view class="group_9">
<text class="font_2 text_12">购买商品均视为同意</text>
<text class="font_2 text_13">用户须知</text>
</view>
<image
class="shrink-0 image_8 ml-2"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FXjPffNQe-question.png"
/>
</view>
</view>
<view class="flex-col section_5">
<view class="flex-row justify-between items-center group_14">
<view class="flex-row">
<text class="font_7 text_14">商品总价</text>
<text class="font_8 ml-7">{{ quantity }}件商品</text>
</view>
<view class="flex-row items-center">
<image
class="shrink-0 image_9"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FjIVFaWXA-rmb.png"
/>
<text class="font_9">{{ sumprice }}</text>
</view>
</view>
<view class="flex-col mt-25">
<view class="flex-row justify-between group_10">
<text class="font_7">优惠券</text>
<view class="flex-row">
<text class="font_8">0张优惠券可用</text>
<image
class="shrink-0 image_7 ml-3"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FTrywtERT-right.png"
/>
</view>
</view>
<view class="flex-col mt-9">
<view class="flex-row justify-between items-center group_11">
<text class="font_7 text_15">满120减0优惠</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_9 image_10"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJmxvlQvD-rmbpink.png"
/>
<text class="font_3 text_16"></text>
<text class="font_9 text_17">0.00</text>
</view>
</view>
<view class="flex-row justify-between items-center group_12">
<text class="font_7 text_18">合计</text>
<view class="flex-row items-center">
<image
class="shrink-0 image_9"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FjIVFaWXA-rmb.png"
/>
<text class="font_9">{{ sumprice }}</text>
</view>
</view>
</view>
</view>
</view>
<view class="flex-col section_6">
<text class="self-start font_7 text_19">订单备注</text>
<view class="flex-col justify-start items-start self-stretch text-wrapper_2 mt-11">
<text class="font_2 text_20">备注建议提前协商250字以内</text>
</view>
</view>
</view>
<view class="flex-row justify-between items-center section_7 pos_8">
<view class="flex-row items-center">
<image
class="shrink-0 image_9 image_11"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJmxvlQvD-rmbpink.png"
/>
<text class="text_21">应付</text>
<text class="text_22">{{ sumprice }}</text>
<!-- <text class="text_24">00</text> -->
</view>
<view class="flex-col justify-start items-center text-wrapper_3" @click="createOrder"><text class="font_7 text_23">微信支付</text></view>
</view>
</view>
<uni-popup ref="popup" background-color="#fff">
<view class="popup-content">
<addressComponentVue></addressComponentVue>
</view>
</uni-popup>
</template>
<script setup>
import {onMounted, ref, toRaw} from 'vue'
import emitter from '../../../utils/emitter'
import { onLoad , onShow } from "@dcloudio/uni-app";
import { baseUrl } from '../../../api/request';
import addressComponentVue from '../component/addressComponent.vue';//
import { stateMap } from '../../../common/global';
import * as math from 'mathjs'
//
const sumprice = ref(0) //
//11.4
const popup = ref(null) //
const addressRealInfo = ref({
detailAddress: '请选择/添加地址'
}) //
const productObject = ref({}) //
const labelList = ref([]) //
const userInfo = wx.getStorageSync('userInfo') //
const orderItemList = ref({})
const totalInfo = ref([]) //
const note = ref('123')
const postCartArr = ref([])
const quantity = ref(1) //
onMounted(() => {
getFonts()
//
emitter.on('close', () => {
close()
})
//
emitter.on('addressInfo', (val) =>{
addressRealInfo.value = val
})
})
onLoad((options)=>{
totalInfo.value = JSON.parse(options.cartInfo)
console.log('options.cartInfo-->',JSON.parse(options.cartInfo));
console.log('totalInfo.value-->',toRaw(totalInfo.value) );
getProduct()
})
onShow(()=>{
userInfo.value = wx.getStorageSync('userInfo') //
getDefaultAddress()
// computed()
})
//
const close = () => {
popup.value.close()
}
//
const loadPop =() =>{
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) {
addressRealInfo.value = res.data.data[key]
}
}
}
const createOrder = async () => { //
console.log('地址信息-->',addressRealInfo.value);
formatArr()
console.log('postCartArr--->',postCartArr.value);
const resOrder = await uni.request({ //
url: baseUrl + '/order/add',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
orderType: productObject.value.type === '服务类' ? 'service' : 'product',
userName: userInfo.userName,
addressId: addressRealInfo.value.id, //id
// contactsId: null, //id
couponId: null, //id
note: note.value,
orderItemMainInfoAddRequestList: toRaw(postCartArr.value)
}
})
console.log('后台返回订单响应==>',resOrder.data);
if(resOrder.data.code === 1) {
wxPay(resOrder.data.data)
}
}
//id
const getProduct = async ()=> {
const res = await uni.request({
url: baseUrl + '/goods/getById',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: { id: totalInfo.value }
})
console.log('展示订单页面的商品信息-->',res.data);
if( res.data.code === 1 ) {
dealRes(res)
}
}
const dealRes =(res)=> { //
productObject.value = res.data.data
sumprice.value = res.data.data.price
console.log('productArr--->',productObject.value);
}
//
const shortNum = ()=>{
if(quantity.value > 1) {
quantity.value -= 1
//
sumprice.value = math.round(sumprice.value-productObject.value.price,2)
}
}
//
const addNum = ()=>{
if( quantity.value < productObject.value.inventory ) { //
quantity.value += 1
sumprice.value = math.round(sumprice.value+productObject.value.price,2) //js
}
}
const formatArr = () =>{ //
postCartArr.value.splice(0,postCartArr.value.length)
postCartArr.value.push({
goodId: totalInfo.value,
quantity: quantity.value
})
console.log(postCartArr.value);
}
const wxPay = async( oid )=> { //id
try {
const res = await uni.request({
url: baseUrl + '/wechat/payment/create',
method: 'POST',
header: {
'cookie': wx.getStorageSync("cookie")
},
data: { id: oid }
})
const paymentData = res.data.data
wx.requestPayment({
appid: paymentData.appId,
nonceStr: paymentData.nonceStr,
package: paymentData.packageVal,
paySign: paymentData.paySign,
timeStamp: paymentData.timeStamp,
signType: paymentData.signType,
success(res) {
uni.showModal({
content: '支付成功',
showCancel: false
})
uni.redirectTo({
url: '/pages/order/product-paysuccess/product-paysuccess?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)
})
console.log('e.errMsg--->',e.errMsg);
}
})
}catch(error) {
console.error('支付请求失败',error);
uni.showModal({
content: '支付请求失败,请重试。',
showCancel: false
})
}
}
//
const getFonts =()=>{
uni.loadFontFace({
family: 'FangZhengFonts',
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
success:(res) =>{
console.log('success',res);
},
fail:(err) => {
console.log('err',err);
}
})
}
</script>
<style lang="scss" scoped>
.popup-content {
height: 392px;
align-items: center;
justify-content: center;
background-color: #fff;
}
.ml-17 {
margin-left: 31.88rpx;
}
.ml-21 {
margin-left: 39.38rpx;
}
.ml-7 {
margin-left: 13.13rpx;
}
.mt-25 {
margin-top: 46.88rpx;
}
.ml-3 {
margin-left: 5.63rpx;
}
.mt-9 {
margin-top: 16.88rpx;
}
.mt-11 {
margin-top: 20.63rpx;
}
.page {
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;
}
.group_1 {
padding: 18.75rpx 15rpx 247.5rpx 16.88rpx;
}
.section_2 {
padding: 21.07rpx 18.75rpx 18.51rpx 20.63rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.font {
font-size: 26.25rpx;
font-family: FangZhengFonts;
line-height: 25.54rpx;
color: #323232;
}
.text {
margin-left: 54rpx;
line-height: 25.74rpx;
}
.image {
width: 43.13rpx;
height: 43.13rpx;
}
.font_2 {
font-size: 22.5rpx;
font-family: FangZhengFonts;
line-height: 22.54rpx;
color: #818181;
}
.text_2 {
line-height: 22.07rpx;
}
.group {
margin-top: 36.54rpx;
}
.font_3 {
font-size: 26.25rpx;
font-family: FangZhengFonts;
line-height: 25.54rpx;
color: #ffaaa5;
}
.text_3 {
line-height: 24.41rpx;
}
.image_2 {
width: 24.38rpx;
height: 24.38rpx;
}
.group_2 {
padding: 0 59.23rpx;
}
.text_4 {
color: #5a5a5a;
line-height: 19.42rpx;
}
.text_5 {
margin-left: 24rpx;
line-height: 15.04rpx;
}
.section_3 {
margin-top: 16.88rpx;
padding: 22.5rpx 0 35.63rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.group_18 {
padding-left: 26.27rpx;
padding-right: 24.36rpx;
margin-bottom: 20rpx;
}
.group_19 {
margin-bottom: 3.75rpx;
}
.image_3 {
border-radius: 9.38rpx;
width: 146.25rpx;
height: 165rpx;
}
.image_4 {
margin-bottom: 9.38rpx;
}
.text_1 {
line-height: 25.01rpx;
}
.image_7 {
width: 30rpx;
height: 30rpx;
}
.font_4 {
font-size: 33.75rpx;
font-family: FangZhengFonts;
line-height: 22.54rpx;
color: #323232;
}
.font_6 {
font-size: 26.25rpx;
font-family: FangZhengFonts;
line-height: 17.23rpx;
color: #323232;
}
.text_27 {
line-height: 17.53rpx;
}
.image_5 {
border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
width: 45rpx;
height: 45rpx;
}
.text-wrapper {
padding: 16.31rpx 0 16.46rpx;
background-color: #ffaaa5;
width: 58.13rpx;
height: 45rpx;
}
.font_5 {
font-size: 26.25rpx;
font-family: FangZhengFonts;
line-height: 17.23rpx;
color: #ffffff;
}
.image_6 {
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
width: 45rpx;
height: 45rpx;
}
.group_9 {
line-height: 21.71rpx;
height: 21.71rpx;
}
.text_12 {
line-height: 21.71rpx;
}
.text_13 {
color: #ed4845;
line-height: 21rpx;
}
.image_8 {
width: 26.25rpx;
height: 26.25rpx;
}
.section_5 {
margin-top: 16.88rpx;
padding: 31.88rpx 13.13rpx 5.63rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.group_14 {
padding: 0 24.02rpx;
}
.font_7 {
font-size: 30rpx;
font-family: FangZhengFonts;
line-height: 29.18rpx;
color: #323232;
}
.text_14 {
line-height: 28.13rpx;
}
.font_8 {
font-size: 30rpx;
font-family: FangZhengFonts;
line-height: 29.18rpx;
color: #818181;
}
.image_9 {
width: 33.75rpx;
height: 33.75rpx;
}
.font_9 {
font-size: 30rpx;
font-family: FangZhengFonts;
line-height: 20.04rpx;
color: #323232;
}
.group_10 {
padding-left: 22.97rpx;
padding-right: 3.75rpx;
}
.group_11 {
padding: 26.25rpx 10.42rpx 28.13rpx 24.62rpx;
border-bottom: solid 1.88rpx #dfdfdf;
}
.text_15 {
line-height: 29.42rpx;
}
.image_10 {
margin-left: 21.6rpx;
}
.text_16 {
margin-left: -55.35rpx;
line-height: 25.74rpx;
}
.text_17 {
margin-left: 33.68rpx;
color: #ffaaa5;
}
.group_12 {
padding: 26.25rpx 11.94rpx 28.13rpx 23.44rpx;
}
.text_18 {
line-height: 27.77rpx;
}
.section_6 {
margin-top: 16.88rpx;
padding: 17.81rpx 24.13rpx 22.5rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.text_19 {
color: #000000;
line-height: 29.53rpx;
}
.text-wrapper_2 {
margin-left: 3.99rpx;
margin-right: 3.99rpx;
padding: 22.35rpx 0 115.22rpx;
background-color: #ffefef;
border-radius: 9.38rpx;
}
.text_20 {
margin-left: 21.15rpx;
line-height: 21.81rpx;
}
.section_7 {
padding: 16.88rpx 25.31rpx 15rpx;
background-color: #ffffff;
}
.pos_8 {
position: fixed;
left: 0;
right: 0;
bottom: 0;
}
.image_11 {
margin-left: 85.31rpx;
}
.text_21 {
margin-left: -119.06rpx;
color: #000000;
font-size: 30rpx;
font-family: FangZhengFonts;
line-height: 26.49rpx;
}
.text_22 {
margin-left: 28.5rpx;
color: #ffaaa5;
font-size: 37.5rpx;
font-family: Open Sans;
font-weight: 700;
line-height: 27.62rpx;
}
.text_24 {
color: #ffaaa5;
font-size: 30rpx;
font-family: Open Sans;
font-weight: 700;
line-height: 22.05rpx;
}
.text-wrapper_3 {
padding: 20.51rpx 0 22.97rpx;
background-color: #ffaaa5;
border-radius: 75rpx;
width: 204.38rpx;
height: 71.25rpx;
}
.text_23 {
color: #ffffff;
line-height: 27.77rpx;
}
@import url(../../../common/css/global.css);
</style>