Selaa lähdekoodia

修改订单详情页

pangqijun 1 vuosi sitten
vanhempi
commit
04b7a25206
3 muutettua tiedostoa jossa 185 lisäystä ja 95 poistoa
  1. 8 2
      api/home.js
  2. 144 6
      pages/groupbuying_details/order_details_list/index.vue
  3. 33 87
      pages/order/index.vue

+ 8 - 2
api/home.js

@@ -100,6 +100,12 @@ export function getUserOrderDetail(data) {
 	return request.get("v1/order/user/detail",data);
 }
 
+// 更换自提点
+export function modifySelfTake(data) {
+	let url = "orderId="+data.orderId + "&selfTakeId=" + data.selfTakeId
+	return request.post("v1/order/modifySelfTake?" + url);
+}
+
 // 根据用户订单NO查询物流信息
 export function getOrderLogistic(data) {
 	return request.get("v1/order/logistic",data);
@@ -117,8 +123,8 @@ export function orderCancel(orderId) {
 
 // 申请退款
 export function postUserOrderRefund(data) {
-	let url = "id="+data.id
-	return request.post("v1/finance/order-refund?"+url,data);
+	let url = "orderId="+data.id
+	return request.post("v1/order/refund?"+url,data);
 }
 
 // 立即购买下单前置校验

+ 144 - 6
pages/groupbuying_details/order_details_list/index.vue

@@ -69,7 +69,7 @@
 							<view class="t1">
 								自提门店
 							</view>
-							<view class="t2" v-if="orderDetail.orderState == 1">
+							<view class="t2" v-if="orderDetail.orderState == 1" @click="getSelfTakeList">
 								更换自提网点
 								<image src="http://www.gzzzyd.com/groupon/order_details/切换_面24@2x.png" mode="scaleToFill" />
 							</view>
@@ -150,7 +150,7 @@
 
 				<button class="info-btn" v-if="orderDetail.orderState == 2" @click="RefundShow = true">申请售后</button>
 				<button class="info-btn" v-if="orderDetail.orderState == 1" @click="cancelOrder()">取消订单</button>
-				<button class="action-btn" v-if="orderDetail.orderState == 1" @click="goPay()">去支付</button>
+				<!-- <button class="action-btn" v-if="orderDetail.orderState == 1" @click="goPay()">去支付</button> -->
 			</view>
 		</view>
 
@@ -171,6 +171,32 @@
 				</button>
 			</view>
 		</u-popup>
+		
+		<u-popup :show="selfTakeShow" @close="selfTakeShow = false">
+			<view class="list_1 flex-col">
+				<view class="list-items_1 flex-col" v-for="(item, index) in selfTakeList" :key="index" @click="modifySelfTake(item.id)">
+					<view class="group_14 flex-row justify-between">
+					  <view class="text-group_8 flex-col">
+						<text class="text_26" >{{item.name}}</text>
+						<text class="text_27" >距您{{item.distanceDesc}}</text>
+					  </view>
+					  <view class="image-text_5 flex-row justify-between">
+						<text class="text-group_9">{{item.address}}</text>
+						<image
+						  class="icon_3"
+						  referrerpolicy="no-referrer"
+						  src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png"
+						/>
+					  </view>
+					</view>
+					<view class="group_15 flex-row">
+					  <view class="tag_1 flex-col">
+						<text class="text_28">营业时间: {{item.busStartTimeDesc}}-{{item.busEndTimeDesc}}</text>
+					  </view>
+					</view>
+				  </view>
+				</view>
+		</u-popup>
 	</view>
 </template>
 <script>
@@ -189,7 +215,8 @@ import authorize from '@/components/Authorize';
 import payment from '@/components/payment';
 import colors from "@/mixins/color";
 import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
-import {getUserOrderDetail, orderCancel} from '@/api/home.js';
+import {getUserOrderDetail, orderCancel, modifySelfTake} from '@/api/home.js';
+import {getGrouponSelfTakeList} from '@/api/groupon.js';
 export default {
 	components: {
 		payment,
@@ -204,16 +231,17 @@ export default {
 	mixins: [colors],
 	data () {
 		return {
+			selfTakeShow: false,
 			RefundShow: false,
 			confirm: '', //自定义留言
 			date: this.$t(`请选择`),
 			time: this.$t(`请选择`),
-
 			canvasWidth: "",
 			canvasHeight: "",
 			canvasStatus: false,
 			newImg: [],
-			orderDetail: {}
+			orderDetail: {},
+			selfTakeList: []
 		}
 	},
 	computed: mapGetters(['isLogin']),
@@ -254,7 +282,6 @@ export default {
 				confirmText: '确定',
 				cancelText: '我再想想',
 				success(res) {
-					console.log("success ->", _this.orderDetail)
 					if (res.confirm) {
 						orderCancel(_this.orderDetail.orderId).then(res => {
 							_this.getOrderDetail(_this.orderDetail.orderId);
@@ -291,6 +318,35 @@ export default {
 					title: err || that.$t(`获取订单详情失败`)
 				});
 			});
+		},
+		/**
+		 * 获取自提点列表
+		 */
+		getSelfTakeList() {
+			let longitude = uni.getStorageSync('user_longitude');
+			let latitude = uni.getStorageSync('user_latitude');
+			getGrouponSelfTakeList({
+				longitude: longitude,
+				latitude: latitude,
+				grouponId: this.orderDetail.grouponId
+			}).then(res => {
+				this.selfTakeList = res.data;
+				this.selfTakeShow = true;
+			})
+		},
+		/**
+		 * 修改自提点
+		 * @param {Object} selfTakeId
+		 */
+		modifySelfTake(selfTakeId) {
+			console.log(this.orderDetail);
+			modifySelfTake({
+				selfTakeId: selfTakeId,
+				orderId: this.orderDetail.orderId
+			}).then(res => {
+				this.selfTakeShow = false;
+				this.getOrderDetail(this.orderDetail.orderId)
+			})
 		}
 	}
 }
@@ -1065,4 +1121,86 @@ export default {
 /deep/ .u-count-down__text{
 	font-size: 28rpx !important;
 }
+
+.list_1 {
+  height: 301px;
+  margin: 12px 8px 0 0;
+}
+
+.list-items_1 {
+  background-color: rgba(255, 255, 255, 1);
+  border-radius: 4px;
+  margin-bottom: 8px;
+  padding: 12px 12px 12px 12px;
+}
+
+.group_14 {
+  width: 319px;
+}
+
+.text-group_8 {
+}
+
+.text_26 {
+  overflow-wrap: break-word;
+  color: rgba(17, 17, 17, 1);
+  font-size: 14px;
+  font-weight: NaN;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 20px;
+  margin-right: 92px;
+}
+
+.text_27 {
+  overflow-wrap: break-word;
+  color: rgba(153, 153, 153, 1);
+  font-size: 12px;
+  font-weight: NaN;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 17px;
+  margin-top: 8px;
+}
+
+.image-text_5 {
+  width: 65px;
+  margin: 2px 0 25px 0;
+}
+
+.text-group_9 {
+  overflow-wrap: break-word;
+  color: rgba(102, 102, 102, 1);
+  font-size: 10px;
+  font-weight: NaN;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 18px;
+}
+
+.icon_3 {
+  width: 14px;
+  height: 14px;
+  margin: 2px 0 2px 0;
+}
+
+.group_15 {
+  margin: 4px 195px 0 0;
+}
+
+.tag_1 {
+  background-color: rgba(255, 247, 248, 1);
+  border-radius: 4px;
+  padding: 4px 12px 4px 13px;
+}
+
+.text_28 {
+  overflow-wrap: break-word;
+  color: rgba(153, 153, 153, 1);
+  font-size: 10px;
+  font-weight: NaN;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 14px;
+}
 </style>

+ 33 - 87
pages/order/index.vue

@@ -19,8 +19,8 @@
 				</view>
 			</view>
 			<view v-for="(item, index) in orderList" :key="index">
-				<view class="list" @click="goOrderDetails(item.orderId)">
-					<view class="myclient_list">
+				<view class="list" >
+					<view class="myclient_list" @click="goOrderDetails(item.orderId)">
 						<view class="myclient_list_name">
 							<view class="nl">
 								{{item.mainTitle}}
@@ -77,7 +77,7 @@
 									{{item.selfTakeName}}
 								</view>
 								<view class="am1-2">
-									<image src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png" mode="scaleToFill" />
+									<image src="http://www.gzzzyd.com/groupon/order_details/导航图标@2x.png" mode="scaleToFill" />
 								</view>
 							</view>
 						</view>
@@ -95,9 +95,11 @@
 						</view>
 					</view>
 					<view class="op-area">
-						<button v-if="item.orderState == 1" class="action-btn" @click="goPay()">立即付款</button>
-						<button v-if="item.orderState == 2" class="info-btn" @click="goPay()">申请退货</button>
-						<button  v-if="item.orderState == 2" class="action-btn" @click="goPay()">取货码 {{item.pickupCode}}</button>
+						<button v-if="item.orderState == 1" class="action-btn" @click="cancelOrder(item.orderId)">取消订单</button>
+						<button v-if="item.orderState == 1" class="action-btn" @click="goPay(item)">立即付款</button>
+						<!-- <button v-if="item.orderState == 4" class="info-btn" @click="goPay()">申请退货</button> -->
+						<button v-if="item.canRefund" class="info-btn" @click="refundOrder(item.orderId)">申请退款</button>
+						<button  v-if="item.orderState == 2" class="action-btn" @click="viewPickCode(item.pickupCode)">取货码 {{item.pickupCode}}</button>
 					</view>
 				</view>
 			</view>
@@ -126,13 +128,12 @@ let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
 const app = getApp();
 import {
 	getUserOrderPage,
-	postUserOrderCancel,
+	orderCancel,
 	postUserOrderRefund
 } from '@/api/home.js';
 import {
 	getOrderList,
 	orderData,
-	orderCancel,
 	orderDel,
 	orderPay
 } from '@/api/order.js';
@@ -205,7 +206,7 @@ export default {
 			orderData: {}, //订单详细统计
 			orderStatus: 0, //订单状态
 			page: 1,
-			limit: 20,
+			limit: 5,
 			payMode: [{
 				name: this.$t(`微信支付`),
 				icon: 'icon-weixinzhifu',
@@ -306,6 +307,13 @@ export default {
 		 */
 		payClose: function () {
 			this.pay_close = false;
+		},
+		/**
+		 * 查看取货码
+		 * @param {Object} code
+		 */
+		viewPickCode(code) {
+			
 		},
 		/**
 		 * 生命周期函数--监听页面加载
@@ -317,38 +325,12 @@ export default {
 			}
 			if (options.status) this.orderStatus = options.status;
 		},
-		/**
-		 * 获取订单统计数据
-		 *
-		 */
-		getOrderData: function () {
-			let that = this;
-			// orderData().then(res => {
-			// 	that.$set(that, 'orderData', res.data);
-			// 	that.payMode.map(item => {
-			// 		if (item.value == 'weixin') {
-			// 			item.payStatus = res.data.pay_weixin_open ? true : false;
-			// 		}
-			// 		if (item.value == 'alipay') {
-			// 			item.payStatus = res.data.ali_pay_status ? true : false;
-			// 		}
-			// 		if (item.value == 'yue') {
-			// 			item.payStatus = res.data.yue_pay_status == 1 ? true : false;
-			// 		}
-			// 		if (item.value == 'friend') {
-			// 			item.payStatus = res.data.friend_pay_status == 1 ? true : false;
-			// 		}
-			// 	});
-			// 	//#ifdef MP
-			// 	this.payMode[1].payStatus = false;
-			// 	//#endif
-			// });
-		},
+	
 		/**
 		 * 取消订单
 		 *
 		 */
-		cancelOrder: function (index, order_id) {
+		cancelOrder: function (order_id) {
 			let that = this;
 			if (!order_id)
 				return that.$util.Tips({
@@ -359,19 +341,12 @@ export default {
 				content: that.$t(`确定取消该订单`),
 				success: function (res) {
 					if (res.confirm) {
-						postUserOrderCancel({ id: order_id })
+						orderCancel(order_id)
 							.then(res => {
 								return that.$util.Tips({
 									title: res.msg,
 									icon: 'success'
-								},
-									function () {
-										that.orderList.splice(index, 1);
-										that.$set(that, 'orderList', that.orderList);
-										// that.$set(that.orderData, 'unpaid_count', that.orderData.unpaid_count - 1);
-										// that.getOrderList()
-									}
-								);
+								});
 							})
 							.catch(err => {
 								return that.$util.Tips({
@@ -387,9 +362,9 @@ export default {
 			});
 
 		},
-		refundOrder: function (index, order_id) {
+		refundOrder: function (orderId) {
 			let that = this;
-			if (!order_id)
+			if (!orderId)
 				return that.$util.Tips({
 					title: that.$t(`缺少订单号无法申请退款订单`)
 				});
@@ -398,20 +373,13 @@ export default {
 				content: that.$t(`确定申请退款该订单`),
 				success: function (res) {
 					if (res.confirm) {
-						postUserOrderRefund({ id: order_id })
+						postUserOrderRefund({ id: orderId })
 							.then(res => {
+								this.getOrderList()
 								return that.$util.Tips({
-									title: res.msg,
+									title: "申请成功",
 									icon: 'success'
-								},
-									function () {
-										that.orderList.splice(index, 1);
-										that.$set(that, 'orderList', that.orderList);
-										// that.$set(that.orderData, 'unpaid_count', that.orderData.unpaid_count - 1);
-										// that.getOrderData();
-										// this.getOrderList()
-									}
-								);
+								});
 							})
 							.catch(err => {
 								return that.$util.Tips({
@@ -431,11 +399,11 @@ export default {
 		 * 打开支付组件
 		 *
 		 */
-		goPay: function (item, order_no) {
+		goPay: function (item) {
 			this.$set(this, 'pay_close', true);
-			this.$set(this, 'pay_order_id', order_no);
-			this.$set(this, 'pay_orderId', item.id);
-			this.$set(this, 'totalPrice', item.totalFee);
+			this.$set(this, 'pay_order_id', item.orderNo);
+			this.$set(this, 'pay_orderId', item.orderId);
+			this.$set(this, 'totalPrice', item.paymentAmount);
 		},
 		/**
 		 * 支付成功回调
@@ -470,33 +438,11 @@ export default {
 			uni.navigateTo({
 				url: '/pages/groupbuying_details/order_details_list/index?orderId=' + orderId
 			});
-			// let that = this;
-			// if (!order_id)
-			// 	return that.$util.Tips({
-			// 		title: that.$t(`缺少订单号无法查看订单详情`)
-			// 	});
-			// uni.showLoading({
-			// 	title: that.$t(`正在加载中`)
-			// });
-			// openOrderSubscribe()
-			// 	.then(() => {
-			// 		uni.hideLoading();
-			// 		uni.navigateTo({
-			// 			url: '/pages/goods/order_details/index?order_id=' + order_id
-			// 			// +'&order='+JSON.stringify(order)
-			// 			// +'&goods='+encodeURIComponent(JSON.stringify(order.orderGoods))
-			// 		})
-			// 	})
-			// 	.catch(err => {
-			// 		uni.hideLoading();
-			// 	});
-
 		},
 		/**
 		 * 切换类型
 		 */
 		statusClick: function (status) {
-			console.log("切换类型 -> ", status.orderStatus);
 			if (status.orderStatus == this.orderStatus) return;
 			this.orderStatus = status.orderStatus;
 			this.loadend = false;
@@ -566,8 +512,8 @@ export default {
 					}
 				}
 			});
-
-		}
+		},
+		
 	},
 	onReachBottom: function () {
 		this.getOrderList();