order.vue 22.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
<template>
	<view class="mainContainer">
		<!-- 地址 -->
		<view class="address all">
			<view class="noAddress flex" @click="toSelectAddress">
				<!-- 暂无地址 -->
				<block v-if="!address">
					<view class="addressIcon">
						<image src="/static/order/addressIcon.png" mode="widthFix"></image>
					</view>
					<view class="noteText">
						请选择收货地址
					</view>
				</block>
				<!-- 已有地址 -->
				<view class="yesAddress" v-else>
					<view class="addressIcons addressIcon">
						<image src="/static/order/addressIcon.png" mode="widthFix"></image>
					</view>
					<view class="addressDetailBox">
						<view class="addressDetailText">
							{{address.region}}{{address.address}}
						</view>
						<view class="nameAndPhone flex">
							<view class="name">
								{{address.name}}
							</view>
							<view class="phone">
								{{address.mobile}}
							</view>
							<view class="addressIconDefult">
								默认
							</view>
						</view>
					</view>
				</view>
				<view class="rightIcon">
					<image src="/static/order/rightIcon.png" mode="widthFix"></image>
				</view>
			</view>
		</view>
		<!-- 商品 -->
		<view class="goods all flex" v-for="(item,index) in goods">
			<view class="goodsImage">
				<image :src="item.goods_spec_id.spec_image" mode="widthFix"></image>
			</view>
			<view class="goodsText">
				<view class="goodsTitle size28">
					{{item.goods_id.name}}
				</view>
				<view class="specs flex">
					<view class="specsText">
						<text class="forPre" v-for="(ite,inde) in item.goods_spec_id.goods_spec">
							{{ite.spec_value}}
						</text>
					</view>
					<view class="specsNum">
						x{{item.num}}
					</view>
				</view>
				<view class="goodsPrice size26">
					<text>¥</text>{{item.goods_spec_id.goods_price}}
				</view>
			</view>
		</view>
		<!-- 商品详情 -->
		<view class="goodsDetail">
			<view class="goodsDetailItem flex justifyBetween">
				<view class="itemLeftText size26">
					商品总价
				</view>
				<view class="itemRightPrice size26 weight600">
					¥{{totleValue}}
				</view>
			</view>
			<view class="goodsDetailItem flex justifyBetween">
				<view class="itemLeftText size26">
					店铺活动
				</view>
				<view class="itemRightPrice size26">
					{{shopActive ? '-' + shopActive : '暂无'}}
				</view>
			</view>
			<view class="goodsDetailItem flex justifyBetween">
				<view class="itemLeftText size26">
					店铺优惠券
				</view>
				<view class="itemRightPrice size26" v-if="cheapListDeal.length == 0">
					暂无使用优惠券
				</view>
				<picker selector-type="auto" mode="selector" @change="cheapListDealHear" :range="cheapListDeal" v-else>
					<view class="itemRightPrice size26">
						{{cheapActive == 0 ? '请选择' : '-' + cheapActive}}
					</view>
				</picker>
			</view>
			<view class="goodsDetailItem flex justifyBetween" v-if="lookValue">
				<view class="itemLeftText size26">
					关注有礼
				</view>
				<view class="follow size26 weight600">
					-¥{{lookValue}}
				</view>
			</view>
			<view class="goodsDetailItem flex justifyBetween" v-if="joinValue">
				<view class="itemLeftText size26">
					入会有礼
				</view>
				<view class="follow size26 weight600">
					-¥{{joinValue}}
				</view>
			</view>
			<view class="goodsDetailItem flex justifyBetween">
				<view class="itemLeftText size26">
					运费
				</view>
				<view class="itemRightPrice size26">
					免运费
				</view>
			</view>
			<view class="goodsDetailItem flex justifyBetween">
				<view class="itemLeftText size26">
					备注
				</view>
				<textarea maxlength="300" class="note size26" @input="noteHear" :value='noteTtext'></textarea>
			</view>
			<view class="truePriceBox flex justifyE">
				<view class="itemRightPrice size28">
					实付款:
				</view>
				<view class="truePrice size28">
					¥{{endValue}}
				</view>
			</view>
		</view>
		<!-- 支付方式 -->
		<view class="payMode all flex justifyBetween alignC">
			<view class="payText size26">
				支付方式
			</view>
			<view class="payWX size26">
				微信支付
			</view>
		</view>
		<!-- 底部固定按钮 -->
		<view class="fixButton all flex justifyE alignC">
			<view class="allSum size28">
				合计:
			</view>
			<view class="allSumPrice size28 weight700">
				¥{{endValue}}
			</view>
			<view class="allSumBtn size30 weight700" @click="comfim">
				提交订单
			</view>
		</view>
	</view>
</template>

<script>
	let jweixin = require('jweixin-module');
	export default {
		data() {
			return {
				address: '', // 默认地址
				goods: '', // 商品信息
				URL: '', // 图片头
				cheapListDeal: [], // 优惠券列表(处理)
				cheapActive: 0, // 选中优惠券
				noteTtext: '', // 备注信息
				totleValue: '', // 商品总价
				shopActive: 0, // 店铺活动
				moveValue: '', // 运费
				endValue: '', // 最终价格
				lookValue: 0, // 关注有礼
				joinValue: 0, // 入会有礼
				whereEnter: true, // true 为购物车 false 为商品详情页
			}
		},
		onLoad(e) {
			this.URL = getApp().globalData.url; // 图片头
			console.log(!!e.one);
			if (!e.goodsInfo) {
				// 购物车跳转
				this.cardDetail(e.ActiveNum, JSON.parse(e.goods));
			} else {
				// 商品详情跳转
				this.whereEnter = false;
				this.goodsDetailInfo((JSON.parse(decodeURIComponent(e.goodsInfo))))
			}
		},
		onShow() {
			this.getAddress(); // 获取地址
		},
		methods: {
			/**
			 * @购物车跳转该页面
			 * */
			// 获取订单详情 & 商品信息 &...
			cardDetail(id, gs) {
				// 商品数据处理
				gs.forEach(item => {
					if (item.goods_id.spec_type == 10) {
						item.goods_spec_id.spec_image = item.goods_id.image;
					}
					// 是否拼接参数
					(item.goods_spec_id.spec_image.slice(0, 4) != 'http') && (item.goods_spec_id.spec_image = this
						.URL + item.goods_spec_id.spec_image);
				})
				this.goods = gs;
				// 获取订单页面全部信息
				let data = {
					cart_ids: id
				}
				this.cart_ids = data.cart_ids // 商品购物车id
				this.$rqs('/api/cart/settlement', data).then((res) => {
					if (res.data.code == 1) {
						// 实付款&商品总价
						this.endValue = this.totleValue = res.data.data.total_price;
						// 运费
						this.moveValue = res.data.data.express_price;
						// 优惠券列表
						this.cheapList = res.data.data.coupon_list;
						(res.data.data.coupon_list.length > 0) && res.data.data.coupon_list.map(item => {
							if ((item.status == 1) && (item.category == 1)) {
								// 可用优惠券
								this.cheapListDeal.push(item.price);
							} else if ((item.status == 1) && (item.category == 2)) {
								// 关注有礼
								this.lookValue = (Number(item.price).toFixed(2))
							} else if ((item.status == 1) && (item.category == 3)) {
								// 入会有礼
								this.joinValue = (Number(item.price).toFixed(2))
							}
						});
						(this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择'));
						// 店铺活动价
						res.data.data.goods_list.map(item => {
							if (item.active.length > 0) {
								this.shopActive = this.shopActive + Number(item.rule.discount_num);
							}
						})
						// 最终价格
						this.endValue = (Number(this.totleValue) - // 总价
								Number(this.shopActive) - // 店铺活动
								Number(this.lookValue) - // 关注有礼
								Number(this.joinValue) + // 入会有礼
								Number(this.moveValue) - // 运费
								Number(this.cheapActive)) // 优惠券
							.toFixed(2);
						this.endValue < 0 && (this.endValue = 0)
					} else {
						uni.showToast({
							title: res.data.msg,
							icon: 'none'
						})
					}
				})
			},
			/**
			 * @商品详情页跳转该页面
			 * */
			goodsDetailInfo(e) {
				// 商品数据处理
				let o = {
					goods_spec_id: {
						spec_image: e.image,
						goods_spec: [{
							spec_value: '',
						}],
						goods_price: e.goods_price,
					},
					goods_id: {
						name: e.name,
					},
					num: e.num,
				};
				let r = [o];
				this.goods = r;
				// 获取订单页面全部信息
				let data = {
					goods_id: e.goods_id,
					num: e.num,
					goods_spec_id: e.goods_spec_id
				}
				this.detailPayData = data;
				this.$rqs('/api/goods/buyData', data).then((res) => {
					if (res.data.code == 1) {
						//商品规格
						this.goods[0].goods_spec_id.goods_spec[0].spec_value = res.data.data.goods_list[0]
							.goods_sku.goods_attr;
						// 实付款&商品总价
						this.endValue = this.totleValue = res.data.data.total_price;
						// 运费
						this.moveValue = res.data.data.express_price;
						// 优惠券列表
						this.cheapList = res.data.data.coupon_list;
						(res.data.data.coupon_list.length > 0) && res.data.data.coupon_list.map(item => {
								if ((item.status == 1) && (item.category == 1)) {
									// 可用优惠券
									this.cheapListDeal.push(item.price);
								} else if ((item.status == 1) && (item.category == 2)) {
									// 关注有礼
									this.lookValue = (Number(item.price).toFixed(2))
								} else if ((item.status == 1) && (item.category == 3)) {
									// 入会有礼
									this.joinValue = (Number(item.price).toFixed(2))
								}
							})
						console.log(this.cheapListDeal);
						(this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择'));
						console.log(this.cheapListDeal);
						// 店铺活动价
						res.data.data.goods_list.map(item => {
							if (item.active.length > 0) {
								this.shopActive = this.shopActive + Number(item.rule.discount_num);
							}
						})
						// 最终价格
						this.endValue = (Number(this.totleValue) - // 总价
								Number(this.shopActive) - // 店铺活动
								Number(this.lookValue) - // 关注有礼
								Number(this.joinValue) + // 入会有礼
								Number(this.moveValue) - // 运费
								Number(this.cheapActive)) // 优惠券
							.toFixed(2);
						this.endValue < 0 && (this.endValue = 0)
					}
				})
			},
			// 监听备注内容
			noteHear(e) {
				this.noteTtext = e.detail.value
			},
			// 监听优惠券选择
			cheapListDealHear(e) {
				(e.detail.value > 0) ? (this.cheapActive = this.cheapListDeal[e.detail.value]) : (this.cheapActive = 0)
				// 选择优惠券改变支付金额
				this.endValue = (Number(this.totleValue) - // 总价
						Number(this.shopActive) - // 店铺活动
						Number(this.lookValue) - // 关注有礼
						Number(this.joinValue) + // 入会有礼
						Number(this.moveValue) - // 运费
						Number(this.cheapActive)) // 优惠券
					.toFixed(2);
				this.endValue < 0 && (this.endValue = 0)
			},
			// 提交按钮
			comfim() {
				if (!this.address) {
					uni.showToast({
						title: '请选择收货地址',
						icon: 'none'
					})
				} else {
					let join = !!this.joinValue ? 3 : 0; // 入会
					let look = !!this.lookValue ? 2 : 0; // 关注
					let cheapActive = !!this.cheapActive ? 1 : 0; // 优惠券
					console.log(join, look, cheapActive);
					let alreadyMake = []; // 用户已选择的
					let userCheap = '';
					// 获取用户已选择优惠券
					this.cheapList.forEach(item => {
						if (((item.category == join) || (item.category == look)) && (item.status == 1)) {
							alreadyMake.push(item);
						} else if ((item.category == cheapActive) && (item.status == 1) && (!userCheap)) {
							this.cheapList.forEach(ite => {
								if ((ite.price == this.cheapActive) && (!userCheap) && (ite.category ==
										cheapActive) && (item.status == 1)) {
									userCheap = ite;
									alreadyMake.push(userCheap);
									return
								}
							})
						}
					})
					//获取用户已选择优惠券 id
					let coupon_id = (alreadyMake.map(item => {
						return item.id
					})).join(',')
					if (this.whereEnter) {
						/**
						 * @购物车支付
						 * */
						// 调用支付接口,获取支付所需信息
						let data = {
							cart_ids: this.cart_ids,
							address_id: this.address.id,
							coupon_id: coupon_id,
							id: uni.getStorageSync('uId') || '',
							remark: this.noteTtext || '',
						}
						this.$rqs('/api/cart/pay', data).then(res => {
							jweixin.config({
								debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
								appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
								timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
								nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
								signature: res.data.data.jsApiParameters.paySign, // 必填,签名,见附录1
								jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
							});
							jweixin.ready(function() {
								jweixin.checkJsApi({
									jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2,
									success: function(res) {
										console.log('checkjsapi Success')
										console.log(res);
									},
									fail: function(res) {
										console.log('res')
										console.log(res);
									}
								});
								jweixin.chooseWXPay({
									timestamp: res.data.data.jsApiParameters.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
									nonceStr: res.data.data.jsApiParameters.nonceStr, // 支付签名随机串,不长于 32 位
									package: res.data.data.jsApiParameters.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***)
									signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
									paySign: res.data.data.jsApiParameters.paySign, // 支付签名
									success: function(res) {
										// 支付成功后的回调函数
										console.log('paysuccess')
										console.log(res)
										// var route = 'payResult' + '?type=1'
										// console.log(route)
										// uni.navigateTo({
										// 	url: route
										// });
									},
									cancel: function(r) {
										// var route = 'payResult' + '?type=2'
										// uni.navigateTo({
										// 	url: route
										// });
									},
									fail: function(res) {
										// console.log('payfail')
										// console.log(res)
										// var route = 'payResult' + '?type=0'
										// uni.navigateTo({
										// 	url: route
										// });
									}
								});
							});
							jweixin.error(function(res) {
								console.log('error')
								console.log(res)
								uni.showToast({
									icon: 'none',
									title: '支付失败了',
									duration: 4000
								});
								// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
								/*alert("config信息验证失败");*/
							});
						})
					} else {
						/**
						 * @商品详情支付
						 * */
						let v = this.detailPayData
						let data = {
							address_id: this.address.id,
							coupon_id: coupon_id,
							id: uni.getStorageSync('uId') || '',
							remark: this.noteTtext || '',
							goods_id: v.goods_id,
							num: v.num,
							goods_spec_id: v.goods_spec_id,
						}
						this.$rqs('/api/goods/pay', data).then(res => {
							jweixin.config({
								debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
								appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
								timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
								nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
								signature: res.data.data.jsApiParameters.paySign, // 必填,签名,见附录1
								jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
							});
							jweixin.ready(function() {
								jweixin.checkJsApi({
									jsApiList: ['chooseWXPay'], // 需要检测的JS接口列表,所有JS接口列表见附录2,
									success: function(res) {
										console.log('checkjsapi Success')
										console.log(res);
									},
									fail: function(res) {
										console.log('res')
										console.log(res);
									}
								});
								jweixin.chooseWXPay({
									timestamp: res.data.data.jsApiParameters
										.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
									nonceStr: res.data.data.jsApiParameters
										.nonceStr, // 支付签名随机串,不长于 32 位
									package: res.data.data.jsApiParameters
										.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***)
									signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
									paySign: res.data.data.jsApiParameters.paySign, // 支付签名
									success: function(res) {
										// // 支付成功后的回调函数
										// console.log('paysuccess')
										console.log(res)
										// var route = 'payResult' + '?type=1'
										// uni.navigateTo({
										// 	url: route
										// });
									},
									cancel: function(r) {
										// var route = 'payResult' + '?type=2'
										// uni.navigateTo({
										// 	url: route
										// });
									},
									fail: function(res) {
										// console.log('payfail')
										// console.log(res)
										// var route = 'payResult' + '?type=0'
										// uni.navigateTo({
										// 	url: route
										// });
									}
								});
							});
							jweixin.error(function(res) {
								console.log('error')
								console.log(res)
								uni.showToast({
									icon: 'none',
									title: '支付失败了',
									duration: 4000
								});
								// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
								/*alert("config信息验证失败");*/
							});
						})
					}
				}
			},
			// 获取地址
			getAddress() {
				this.$rqs('/api/address/index').then((res) => {
					let r = res.data.data[0];
					if ((res.data.code == 1) && (r.is_default = 1)) {
						r.region = r.region.replaceAll('/', '');
						r.mobile = r.mobile.slice(0, 3) + '****' + r.mobile.slice(7, 11);
						this.address = r;
						this.$forceUpdate();
					}
				})
			},
			// 跳转选择地址
			toSelectAddress() {
				uni.navigateTo({
					url: 'selectAddress/selectAddress'
				})
			},
		}
	}
</script>

<style>
	.mainContainer {
		padding: 24rpx 0 228rpx;
	}

	.all {
		background-color: #FFFFFF;
		padding: 0 32rpx;
		box-sizing: border-box;
	}

	/* 地址 */
	.address {
		height: 142rpx;
	}

	.noAddress {
		height: inherit;
		align-items: center;
	}

	.noteText {
		margin-left: 8rpx;
		color: #1F1F1F;
		font-size: 28rpx;
		font-weight: 600;
	}

	.addressIcon,
	.rightIcon {
		width: 32rpx;
		height: 32rpx;
	}

	.rightIcon {
		margin-left: auto;
	}

	/* 商品 */
	.goods {
		padding-top: 32rpx;
		box-sizing: border-box;
		margin-top: 18rpx;
		height: 250rpx;
		justify-content: space-between;
	}

	.goodsImage {
		width: 180rpx;
		height: 180rpx;
	}

	.specsText {
		width: 450rpx;
		height: 40rpx;
		display: -webkit-box;
		/** 对象作为伸缩盒子模型显示 **/
		overflow: hidden;
		word-break: break-all;
		/* break-all(允许在单词内换行。) */
		text-overflow: ellipsis;
		/* 超出部分省略号 */
		-webkit-box-orient: vertical;
		/** 设置或检索伸缩盒对象的子元素的排列方式 **/
		-webkit-line-clamp: 1;
		/** 显示的行数 **/
		color: #C2C2C2;
	}

	.goodsTitle,
	.goodsPrice {
		color: #1F1F1F;
	}

	.goodsTitle {
		width: 482rpx;
		height: 28rpx;
		line-height: 28rpx;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.specs {
		margin-top: 16rpx;
	}

	.specsNum {
		font-size: 26rpx;
		color: #969799;
		margin-left: auto;
	}

	.goodsPrice {
		margin-top: 52rpx;
	}

	.goodsText {
		width: 482rpx;
		height: 180rpx;
	}

	/* 商品详情 */
	.goodsDetail {
		padding: 32rpx;
		box-sizing: border-box;
		background-color: #fff;
		margin-top: 24rpx;
	}

	.goodsDetailItem {
		margin-bottom: 32rpx;
	}

	textarea {
		height: auto;
	}

	.itemLeftText {
		color: #5C5C5C;
	}

	.itemRightPrice {
		color: #1F1F1F;
	}

	.follow {
		color: #FC4338;
	}

	.note {
		color: #323233;
		text-align: right;
	}

	.truePrice {
		font-weight: 700;
		color: #3E554E;
	}

	.truePriceBox {
		margin-top: 58rpx;
		position: relative;
	}

	.truePriceBox::before {
		content: '';
		width: 100%;
		height: 2rpx;
		background-color: #EBEBEB;
		position: absolute;
		top: 0;
		transform: translateY(-18rpx);
	}

	.payMode {
		color: #5C5C5C;
		margin-top: 24rpx;
		height: 104rpx;
	}

	.payWX {
		color: #1F1F1F;
	}

	.fixButton {
		height: 164rpx;
		width: 100%;
		padding-bottom: 68rpx;
		box-sizing: border-box;
		position: fixed;
		bottom: 0;
		left: 0;
	}

	.allSum {
		color: #1F1F1F;
	}

	.allSumPrice {
		color: #DC9E5E;

	}

	.allSumBtn {
		width: 236rpx;
		height: 80rpx;
		background: linear-gradient(119.1deg, rgba(52, 94, 71, 1) 0%, rgba(62, 85, 78, 1) 100%);
		line-height: 80rpx;
		text-align: center;
		color: #fff;
		margin-left: 48rpx;
	}

	/* 有地址 */
	.yesAddress {
		position: relative;
		height: 80rpx;
		width: 100%;
		padding-left: 40rpx;
		box-sizing: border-box;
	}

	.addressIcons {
		position: absolute;
		left: 0;
		top: 4rpx;
	}

	.addressIconDefult {
		width: 64rpx;
		height: 32rpx;
		background-color: #3E554E;
		border-radius: 8rpx;
		color: #fff;
		font-size: 24rpx;
		text-align: center;
		line-height: 32rpx;
	}

	.phone {
		margin-left: 16rpx;
	}

	.addressDetailText {
		color: #323233;
		font-weight: 600;
		font-size: 28rpx;
		height: 28rpx;
		line-height: 28rpx;
		display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
		overflow: hidden;
		word-break: break-all;  /* break-all(允许在单词内换行。) */
		text-overflow: ellipsis;  /* 超出部分省略号 */
		-webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
		-webkit-line-clamp: 1; /** 显示的行数 **/
		
	}

	.addressIconDefult {
		margin-left: 32rpx;
	}

	.nameAndPhone {
		margin-top: 10rpx;
		height: 32rpx;
		align-items: center;
	}

	.name,
	.phone {
		color: #727272;
		font-size: 24rpx;
	}

	.forPre {
		margin-right: 10rpx;
	}
</style>