| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745 | 
							- <template>
 
- 	<view>
 
- 		<view class="inner-box">
 
- 			<!-- 收货人 -->
 
- 			<view class="address-box" v-if="address==null" @click="openAddress()">
 
- 				<view class="left">
 
- 					<view class="name-box">
 
- 						<text class="text name">添加收货地址</text>
 
- 					</view>
 
- 				</view>
 
- 				<view class="arrow-box">
 
- 					<image src="/static/images/arrow_gray.png" mode=""></image>
 
- 				</view>
 
- 			</view>
 
- 			<view class="address-box" v-if="address!=null" @click="openAddress()">
 
- 				<view class="left">
 
- 					<view class="name-box">
 
- 						<text class="text name">{{address.realName}}</text>
 
- 						<text class="text" v-if="address.phone!=null">{{address.phone}}</text>
 
- 					</view>
 
- 					<view class="address">
 
- 						{{address.province}}{{address.city}}{{address.district}}{{address.detail}}
 
- 					</view>
 
- 				</view>
 
- 				<view class="arrow-box">
 
- 					<image src="/static/images/arrow_gray.png" mode=""></image>
 
- 				</view>
 
- 			</view>
 
- 			<!-- 药品列表 -->
 
- 			<view class="shopbox" v-for="(shop,idx) in carts" :key="idx">
 
- 				<view class="shopbox-name" v-if="shop.storeName && shop.storeName != 'null'">
 
- 					<text>{{shop.storeName}}</text>
 
- 				</view>
 
- 				<view class="goods-list">
 
- 					<view v-for="(item,index) in shop.list" :key="index" class="item">
 
- 						<view class="img-box">
 
- 							<image :src="item.productAttrImage?item.productAttrImage:item.productImage"
 
- 								mode="aspectFill"></image>
 
- 						</view>
 
- 						<view class="info-box">
 
- 							<view>
 
- 								<view class="name-box ellipsis2">
 
- 									<view class="tag">{{utils.getDictLabelName("storeProductType",item.productType)}}
 
- 									</view>{{item.productName}}
 
- 								</view>
 
- 								<view class="spec ellipsis2">{{item.productAttrName}}</view>
 
- 							</view>
 
- 							<view class="price-num">
 
- 								<view class="price">
 
- 									<text class="unit">¥</text>
 
- 									<text class="num">{{(item.price||0).toFixed(2)}}</text>
 
- 								</view>
 
- 								<view class="num">x{{item.cartNum}}</view>
 
- 							</view>
 
- 						</view>
 
- 					</view>
 
- 					<!-- 运费 -->
 
- 					<view class="points">
 
- 						<view class="left">
 
- 							<text class="text">运费</text>
 
- 						</view>
 
- 						<view class="right" v-if="price&&price.length > 0">
 
- 							<text
 
- 								class="text">{{price[idx].payPostage==null||price[idx].payPostage==0?'免运费':(price[idx].payPostage||0).toFixed(2)}}</text>
 
- 						</view>
 
- 					</view>
 
- 					<!-- 备注 -->
 
- 					<view class="points">
 
- 						<view class="left">
 
- 							<text class="text">备注</text>
 
- 						</view>
 
- 						<view class="remarks">
 
- 							<input type="text" v-model="shop.markinfo" placeholder="备注留言(选填)"
 
- 								placeholder-class="input" />
 
- 						</view>
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 			<!-- 积分 -->
 
- 			<view class="price-info">
 
- 				<view class="price-info-title">价格明细</view>
 
- 				<view class="points">
 
- 					<view class="left">
 
- 						<text class="text">商品总价</text>
 
- 					</view>
 
- 					<view class="right" style="align-items: baseline;">
 
- 						<text class="price-info-unit">¥</text>
 
- 						<text class="price-info-num">{{(priceSum||0).toFixed(2)}}</text>
 
- 					</view>
 
- 				</view>
 
- 				<view class="points">
 
- 					<view class="left">
 
- 						<text class="text">运费</text>
 
- 					</view>
 
- 					<view class="right">
 
- 						<text class="text" v-if="address!=null">{{price.pay_delivery==null||price.pay_delivery==0?'免运费':price.pay_delivery.toFixed(2)}}</text>
 
- 						<text class="text" v-if="address==null">--</text>
 
- 					</view>
 
- 				</view>
 
- 				<!-- <view class="points">
 
- 					<view class="left">
 
- 						<text class="text">服务费</text>
 
- 					</view>
 
- 					<view class="right">
 
- 						<text class="text">{{price.serviceFee.toFixed(2)}}</text>
 
- 					</view>
 
- 				</view> -->
 
- 				<view class="points">
 
- 					<view class="left">
 
- 						<text class="text">合计</text>
 
- 					</view>
 
- 					<view class="right" style="align-items: baseline;">
 
- 						<text class="price-info-unit">¥</text>
 
- 						<text class="price-info-num">{{(priceSum||0).toFixed(2)}}</text>
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<view class="btn-foot">
 
- 			<view class="right">
 
- 				<view class="total">
 
- 					<text class="label">合计:</text>
 
- 					<view class="price">
 
- 						<text class="unit">¥</text>
 
- 						<text class="num">{{(priceSum||0).toFixed(2)}}</text>
 
- 					</view>
 
- 				</view>
 
- 				<view class="btn" @click="submitOrder">提交订单</view>
 
- 			</view>
 
- 		</view>
 
- 	</view>
 
- </template>
 
- <script>
 
- 	import {
 
- 		createliveOrder, // 创建订单
 
- 		userAddr, // 获取用户收货地址
 
- 		cartOrder, //购物车订单
 
- 		checked //获取购物车选中商品
 
- 	} from "@/api/order.js"
 
- 	export default {
 
- 		data() {
 
- 			return {
 
- 				cityId:null,
 
- 				priceSum: null,
 
- 				cartsSelect: [],
 
- 				address: null,
 
- 				addressId: null,
 
- 				totalNum: null,
 
- 				orderKey: null,
 
- 				price: null,
 
- 				liveId: null,
 
- 				orderList: [],
 
- 				userInfo: null,
 
- 				temps: [],
 
- 				couponUserId: null,
 
- 				couponText: "请选择",
 
- 				couponsList: [],
 
- 				couponVisible: false,
 
- 				carts: [],
 
- 				checked: false,
 
- 				// type: null,
 
- 				cartIds: null,
 
- 				confirmParam: [],
 
- 				
 
- 			}
 
- 		},
 
- 		onLoad(options) {
 
- 			uni.$on('updateAddress', this.handleAddressUpdate);
 
- 			console.log("确认订单", options)
 
- 			this.orderKey = options.orderKey;
 
- 			this.liveId = options.liveId
 
- 			this.productId = options.productId
 
- 			this.totalNum = Number(options.totalNum) || 0
 
- 			this.price = Number(options.price) || 0
 
- 			this.priceSum = this.price * this.totalNum
 
- 		},
 
- 		mounted() {
 
- 			this.getUserAddr()
 
- 			uni.$on('updateAddress', (e) => {
 
- 				this.address = e;
 
- 				this.addressId = e.addressId;
 
- 			});
 
- 		},
 
- 		onUnload() {
 
- 			// 页面卸载时移除监听,避免内存泄漏
 
- 			uni.$off('updateAddress', this.handleAddressUpdate);
 
- 		},
 
- 		beforeDestroy() {
 
- 			// 移除事件监听,避免内存泄漏
 
- 			uni.$off('updateAddress');
 
- 		},
 
- 		methods: {
 
- 			handleAddressUpdate(item) {
 
- 				console.log('接收到地址数据:', item);
 
- 				// 在这里处理地址数据
 
- 				this.cityId = item.cityId;
 
- 				// 更新页面显示或其他操作
 
- 			},
 
- 			// 获取用户收货地址
 
- 			getUserAddr() {
 
- 				userAddr().then(res => {
 
- 						if (res.code == 200) {
 
- 							console.log("用户收货地址>>>>", res.data)
 
- 							this.address = res.data;
 
- 						} else {
 
- 							uni.showToast({
 
- 								title: res.msg,
 
- 								icon: 'none'
 
- 							});
 
- 						}
 
- 					},
 
- 					rej => {}
 
- 				);
 
- 			},
 
- 			// 创建订单
 
- 			createLiveOrder() {
 
- 				let data = {
 
- 					cityId:this.cityId,
 
- 					liveId: this.liveId,
 
- 					orderKey: this.orderKey,
 
- 					userName: this.address.realName,
 
- 					userPhone: this.address.phone,
 
- 					userAddress: this.address.province+' ' + this.address.city+' ' + this.address.district+' ' + this.address
 
- 						.detail,
 
- 					cartId: "5",
 
- 					productId: this.productId,
 
- 					totalNum: this.totalNum,
 
- 				}
 
- 				return createliveOrder(data).then(res => { // 添加 return
 
- 					if (res.code == 200) {
 
- 						this.orderList = res.order;
 
- 						return res.order; // 返回订单数据供后续使用
 
- 					} else {
 
- 						uni.showToast({
 
- 							title: res.msg,
 
- 							icon: 'none'
 
- 						});
 
- 						throw new Error(res.msg); // 抛出错误以便 submitOrder 捕获
 
- 					}
 
- 				});
 
- 			},
 
- 			getWeixinOrderTemps: function() {
 
- 				getWeixinOrderTemps().then(
 
- 					res => {
 
- 						if (res.code == 200) {
 
- 							this.temps = res.temp
 
- 						} else {
 
- 						}
 
- 					},
 
- 					rej => {}
 
- 				);
 
- 			},
 
- 			couponSelect(item) {
 
- 				this.couponText = "-¥" + (item.couponPrice || 0).toFixed(2);
 
- 				this.couponUserId = item.id;
 
- 				this.couponVisible = false;
 
- 				this.computed();
 
- 			},
 
- 			openCoupon() {
 
- 				let that = this;
 
- 				var data = {
 
- 					couponType: 2,
 
- 					useMinPrice: this.price.payPrice
 
- 				};
 
- 				getMyEnableCouponList(data).then(res => {
 
- 					this.couponVisible = true;
 
- 					that.couponsList = res.data
 
- 				})
 
- 			},
 
- 			integralChange(e) {
 
- 				this.form.useIntegral = e ? 1 : 0
 
- 				this.computed()
 
- 			},
 
- 			openAddress() {
 
- 				uni.navigateTo({
 
- 					url: '/pages_user/user/address'
 
- 				})
 
- 			},
 
- 			// 提交订单
 
- 			async submitOrder() {
 
- 				try {
 
- 					if (this.orderKey == null) {
 
- 						uni.showToast({
 
- 							icon: 'none',
 
- 							title: '订单KEY不存在',
 
- 						});
 
- 						return;
 
- 					}
 
- 					if (this.address == null) {
 
- 						uni.showToast({
 
- 							icon: 'none',
 
- 							title: '收货地址不能为空',
 
- 						});
 
- 						return;
 
- 					}
 
- 					let orderList;
 
- 					orderList = await this.createLiveOrder(); // 等待订单数据返回
 
- 					console.log("orderList>>", orderList)
 
- 					const orderListStr = encodeURIComponent(JSON.stringify(orderList));
 
- 					uni.navigateTo({
 
- 						url: `/pages_shopping/live/paymentOrder?orderList=${orderListStr}`
 
- 					});
 
- 				} catch (error) {
 
- 					uni.showToast({
 
- 						title: res.msg,
 
- 						icon: 'none'
 
- 					});
 
- 				}
 
- 			},
 
- 			// 购物车支付订单
 
- 			async creatCartOrder() {
 
- 				try {
 
- 					if (this.orderKey == null) {
 
- 						uni.showToast({
 
- 							icon: 'none',
 
- 							title: '订单KEY不存在',
 
- 						});
 
- 						return;
 
- 					}
 
- 					if (this.address == null) {
 
- 						uni.showToast({
 
- 							icon: 'none',
 
- 							title: '收货地址不能为空',
 
- 						});
 
- 						return;
 
- 					}
 
- 					const orderList = await this.cartOrder(); // 等待订单数据返回
 
- 					const orderListStr = encodeURIComponent(JSON.stringify(orderList));
 
- 					uni.navigateTo({
 
- 						url: `/pages_shopping/live/paymentOrder?orderList=${orderListStr}`
 
- 					});
 
- 				} catch (error) {
 
- 					console.error('订单创建失败:', error);
 
- 					uni.showToast({
 
- 						title: '提交失败',
 
- 						icon: 'none'
 
- 					});
 
- 				}
 
- 			},
 
- 		}
 
- 	}
 
- </script>
 
- <style lang="scss">
 
- 	.inner-box {
 
- 		padding: 20upx 20upx 140upx;
 
- 		.address-box {
 
- 			margin-bottom: 20rpx;
 
- 			box-sizing: border-box;
 
- 			min-height: 171upx;
 
- 			background: #FFFFFF;
 
- 			border-radius: 16upx;
 
- 			background-repeat: no-repeat;
 
- 			background-size: 100% 30upx;
 
- 			background-position: left bottom;
 
- 			padding: 38upx 30upx 36upx;
 
- 			display: flex;
 
- 			align-items: center;
 
- 			justify-content: space-between;
 
- 			.left {
 
- 				width: 92%;
 
- 				.name-box {
 
- 					display: flex;
 
- 					align-items: center;
 
- 					.text {
 
- 						font-size: 32upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: bold;
 
- 						color: #111111;
 
- 						line-height: 1;
 
- 						&.name {
 
- 							margin-right: 30upx;
 
- 						}
 
- 					}
 
- 				}
 
- 				.address {
 
- 					font-size: 28upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #666666;
 
- 					line-height: 42upx;
 
- 					text-align: left;
 
- 					margin-top: 23upx;
 
- 				}
 
- 			}
 
- 			.arrow-box {
 
- 				width: 12upx;
 
- 				height: 23upx;
 
- 				display: flex;
 
- 				align-items: cenetr;
 
- 				justify-content: cenetr;
 
- 				image {
 
- 					width: 100%;
 
- 					height: 100%;
 
- 				}
 
- 			}
 
- 		}
 
- 		.shopbox {
 
- 			background: #FFFFFF;
 
- 			border-radius: 16rpx;
 
- 			margin-bottom: 20rpx;
 
- 			.points {
 
- 				padding: 0 !important;
 
- 			}
 
- 			.remarks {
 
- 				padding: 0 !important;
 
- 			}
 
- 		}
 
- 		.shopbox-name {
 
- 			padding: 30rpx 30rpx 0 30rpx;
 
- 			font-family: PingFang SC, PingFang SC;
 
- 			font-weight: 400;
 
- 			font-size: 30rpx;
 
- 			color: #111;
 
- 			overflow: hidden;
 
- 			white-space: nowrap;
 
- 			text-overflow: ellipsis;
 
- 		}
 
- 		.goods-list {
 
- 			// margin-top: 20upx;
 
- 			padding: 0 30upx;
 
- 			background-color: #FFFFFF;
 
- 			border-radius: 16upx;
 
- 			.item {
 
- 				padding: 30upx 0;
 
- 				border-bottom: 1px solid #EDEEEF;
 
- 				display: flex;
 
- 				align-items: center;
 
- 				.img-box {
 
- 					width: 160upx;
 
- 					height: 160upx;
 
- 					margin-right: 30upx;
 
- 					image {
 
- 						width: 100%;
 
- 						height: 100%;
 
- 					}
 
- 				}
 
- 				.info-box {
 
- 					width: calc(100% - 190upx);
 
- 					height: 160upx;
 
- 					display: flex;
 
- 					flex-direction: column;
 
- 					justify-content: space-between;
 
- 					.name-box {
 
- 						font-size: 28upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #111111;
 
- 						line-height: 40upx;
 
- 						.tag {
 
- 							display: inline-block;
 
- 							padding: 0 6upx;
 
- 							height: 30upx;
 
- 							background: linear-gradient(90deg, #66b2ef 0%, #0bb3f2 100%);
 
- 							border-radius: 4upx;
 
- 							margin-right: 10upx;
 
- 							font-size: 22upx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: bold;
 
- 							color: #FFFFFF;
 
- 							line-height: 30upx;
 
- 							float: left;
 
- 							margin-top: 7upx;
 
- 						}
 
- 					}
 
- 					.spec {
 
- 						margin-top: 10upx;
 
- 						font-size: 24upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #999999;
 
- 						line-height: 1;
 
- 					}
 
- 					.price-num {
 
- 						display: flex;
 
- 						align-items: center;
 
- 						justify-content: space-between;
 
- 						.price {
 
- 							display: flex;
 
- 							align-items: flex-end;
 
- 							.unit {
 
- 								font-size: 24upx;
 
- 								font-family: PingFang SC;
 
- 								font-weight: 500;
 
- 								color: #111111;
 
- 								line-height: 1.2;
 
- 								margin-right: 4upx;
 
- 							}
 
- 							.num {
 
- 								font-size: 32upx;
 
- 								font-family: PingFang SC;
 
- 								font-weight: 500;
 
- 								color: #111111;
 
- 								line-height: 1;
 
- 							}
 
- 						}
 
- 						.num {
 
- 							font-size: 24upx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #999999;
 
- 							line-height: 1;
 
- 						}
 
- 					}
 
- 				}
 
- 			}
 
- 			.sub-total {
 
- 				height: 88upx;
 
- 				display: flex;
 
- 				align-items: center;
 
- 				justify-content: flex-end;
 
- 				.label {
 
- 					font-size: 24upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #999999;
 
- 				}
 
- 				.price {
 
- 					display: flex;
 
- 					align-items: flex-end;
 
- 					.unit {
 
- 						font-size: 24upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #FF6633;
 
- 						line-height: 1.2;
 
- 						margin-right: 4upx;
 
- 					}
 
- 					.num {
 
- 						font-size: 32upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: bold;
 
- 						color: #FF6633;
 
- 						line-height: 1;
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 		.price-info {
 
- 			background: #FFFFFF;
 
- 			border-radius: 16upx;
 
- 			&-title {
 
- 				padding: 30rpx 30rpx 20rpx 30rpx;
 
- 				font-family: PingFang SC, PingFang SC;
 
- 				font-weight: 500;
 
- 				font-size: 30rpx;
 
- 				color: #111;
 
- 			}
 
- 			&-unit {
 
- 				font-size: 24rpx;
 
- 			}
 
- 			&-num {
 
- 				font-size: 28rpx;
 
- 			}
 
- 		}
 
- 		.points {
 
- 			height: 88upx;
 
- 			padding: 0 30upx;
 
- 			background: #FFFFFF;
 
- 			border-radius: 16upx;
 
- 			display: flex;
 
- 			align-items: center;
 
- 			justify-content: space-between;
 
- 			.left {
 
- 				display: flex;
 
- 				align-items: center;
 
- 				image {
 
- 					width: 28upx;
 
- 					height: 28upx;
 
- 					margin-right: 20upx;
 
- 				}
 
- 				.text {
 
- 					font-size: 28upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #666666;
 
- 				}
 
- 			}
 
- 			.right {
 
- 				display: flex;
 
- 				align-items: center;
 
- 				.text {
 
- 					font-size: 28upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #111111;
 
- 				}
 
- 				image {
 
- 					margin-left: 15upx;
 
- 					width: 14upx;
 
- 					height: 24upx;
 
- 				}
 
- 			}
 
- 		}
 
- 		.remarks {
 
- 			// height: 88upx;
 
- 			padding: 0 30upx;
 
- 			background: #FFFFFF;
 
- 			border-radius: 16upx;
 
- 			margin-top: 20upx;
 
- 			display: flex;
 
- 			align-items: center;
 
- 			input {
 
- 				width: 100%;
 
- 				font-size: 28upx;
 
- 				font-family: PingFang SC;
 
- 				font-weight: 500;
 
- 				color: #000000;
 
- 			}
 
- 			.input {
 
- 				font-size: 28upx;
 
- 				font-family: PingFang SC;
 
- 				font-weight: 500;
 
- 				color: #999999;
 
- 			}
 
- 		}
 
- 	}
 
- 	.btn-foot {
 
- 		box-sizing: border-box;
 
- 		width: 100%;
 
- 		height: 121upx;
 
- 		background: #FFFFFF;
 
- 		padding: 16upx 30upx 16upx 60upx;
 
- 		display: flex;
 
- 		align-items: center;
 
- 		justify-content: flex-end;
 
- 		position: fixed;
 
- 		left: 0;
 
- 		bottom: 0;
 
- 		z-index: 99;
 
- 		.right {
 
- 			display: flex;
 
- 			align-items: center;
 
- 			.total {
 
- 				display: flex;
 
- 				align-items: flex-end;
 
- 				margin-right: 36upx;
 
- 				.label {
 
- 					font-size: 26upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					color: #999999;
 
- 					line-height: 1.5;
 
- 				}
 
- 				.price {
 
- 					display: flex;
 
- 					align-items: flex-end;
 
- 					.unit {
 
- 						font-size: 32upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: bold;
 
- 						color: #FF6633;
 
- 						line-height: 1.2;
 
- 						margin-right: 10upx;
 
- 					}
 
- 					.num {
 
- 						font-size: 50upx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: bold;
 
- 						color: #FF6633;
 
- 						line-height: 1;
 
- 					}
 
- 				}
 
- 			}
 
- 			.btn {
 
- 				width: 200upx;
 
- 				height: 88upx;
 
- 				line-height: 88upx;
 
- 				text-align: center;
 
- 				font-size: 30upx;
 
- 				font-family: PingFang SC;
 
- 				font-weight: bold;
 
- 				color: #FFFFFF;
 
- 				background: #0bb3f2;
 
- 				border-radius: 44upx;
 
- 			}
 
- 		}
 
- 	}
 
- </style>
 
 
  |