Browse Source

1.更换申请 进度
2.订单详情

guo 3 years ago
parent
commit
7df8f6a46f

+ 18 - 0
pages.json

@@ -255,6 +255,24 @@
             }
             
         }
+        ,{
+            "path" : "pages/refundMoney/refundSchedule",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "进度详情",
+                "enablePullDownRefresh": false
+            }
+            
+        }
+        ,{
+            "path" : "pages/changeStore/changeSchedule",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "进度详情",
+                "enablePullDownRefresh": false
+            }
+            
+        }
     ],
 	"tabBar": {
 		"color": "#8a8a8a",

+ 110 - 0
pages/changeStore/changeSchedule.vue

@@ -0,0 +1,110 @@
+<template>
+	<view class="content">
+		
+			<view class="itemBg" v-for="(item,index) in itemData">
+				<view class="leftView">
+					<view class="redCircle"></view>
+					<view class="grayLine"></view>
+				</view>
+				<view class="rightView">
+					 <!-- "bizType"操作类型 1提交申请 2修改申请 3平台处理 4撤销申请 -->
+					<view class="name"v-if="item.bizType==1">提交申请</view>
+					<view class="name"v-if="item.bizType==2">修改申请</view>
+					<view class="name"v-if="item.bizType==3">平台处理</view>
+					<view class="name"v-if="item.bizType==4">撤销申请</view>
+					<view class="contents">{{item.contents}}</view>
+					<view class="time">{{item.createTime}}</view>
+				</view>
+				
+				
+			</view>
+		
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				itemData:[],
+				id:'',
+			}
+		},
+		onLoad(opt) {
+			this.id = opt.id
+			this.getData();
+		},
+		methods: {
+			getData() {
+				uni.showLoading({
+					title: '加载中'
+				})
+				
+				let url = 'worldKeepCar/orderChangeShop/scheduleDetails',
+					params = {
+						id: this.id,
+						
+					}
+				this.$http(url, params, 'GET').then(res => {
+					uni.hideLoading()
+					
+					this.itemData = res.data
+					
+					
+			
+			
+				})
+			}
+		}
+	}
+</script>
+
+<style>
+	.content {
+		background-color: #FFFFFF;
+		min-height: 100vh;
+		padding: 30rpx 0;
+	}
+	
+	.itemBg {
+		background-color: #FFFFFF;
+		display: flex;
+	}
+	.leftView{
+		width: 40rpx;
+		padding: 0 20rpx;
+		display:flex;
+		flex-direction:column;
+		align-items:center;
+	}
+	.redCircle{
+		width: 22rpx;
+		height: 22rpx;
+		border-radius: 11rpx;
+		background: #FF2400;
+	}
+	.grayLine{
+		width: 2px;
+		height: 90%;
+		background: #F4F5F7;
+	}
+	.rightView{
+		padding: 0 20rpx 60rpx;
+	}
+	.name{
+		color: #333333;
+		font-size: 28rpx;
+		font-weight: bold;
+	}
+	.contents{
+		color: #333333;
+		font-size: 24rpx;
+		padding: 10rpx 0;
+	}
+	.time{
+		color: #999999;
+		font-size: 22rpx;
+		
+	}
+</style>

+ 7 - 1
pages/changeStore/changeStoreDetail.vue

@@ -69,7 +69,7 @@
 			<view class="title2">您可以修改更换申请后再次发起,平台会重新处理</view>
 		</view>
 		<!-- 同意申请 -->
-		<view class="tongyiView" v-if="state!=1">
+		<view class="tongyiView" v-if="state!=1" @click="goSchedule()">
 			<view class="title1">进度详情</view>
 			<image src="../../static/img/rightArrow.png" mode="" style="width: 14rpx; height: 23rpx;"></image>
 		</view>
@@ -159,6 +159,12 @@
 			this.getData();
 		},
 		methods: {
+			goSchedule(){
+				uni.navigateTo({
+					
+					url: 'changeSchedule?id=' + this.detailData.id
+				})
+			},
 			goOrderDetail() {
 				uni.navigateTo({
 					

+ 26 - 4
pages/order/orderDetail.vue

@@ -91,7 +91,14 @@
 						<view class="Address">
 							{{orderData.ProvinceName}}{{orderData.CityName}}{{orderData.AreaName}}{{orderData.Address}}
 						</view>
-						<view style="color: #3F90F7; font-size: 26rpx;" v-if="orderData.SheetState==2" @click="changeStore">申请更换服务门店</view>
+						<view v-if="orderData.SheetState==2">
+							<!-- ChangeState  更换门店:1待处理2更换成功3更换关闭    3的不展示 -->
+							<view style="color: #3F90F7; font-size: 26rpx;" v-if="orderData.ChangeState==null"  @click="changeStore">申请更换服务门店</view>
+							<view style="color: #3F90F7; font-size: 26rpx;" v-else-if="orderData.ChangeState==1" @click="changeDetail">更换门店中</view>
+						</view>
+						
+						
+						
 					</view>
 					<view class="shopRightBox" @click="map">
 						<view>
@@ -254,15 +261,19 @@
 			</view>
 
 			<view class="orderBottom" v-if="orderData.SheetState==2">
-				<view class="cancelBtn" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn"v-if="orderData.ServiceState == null" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn" v-else @click="refundDetail">退款详情</view>
+				
 			</view>
 
 			<view class="orderBottom" v-if="orderData.SheetState==3">
-				<view class="cancelBtn" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn"v-if="orderData.ServiceState == null" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn" v-else @click="refundDetail">退款详情</view>
 			</view>
 
 			<view class="orderBottom" v-if="orderData.SheetState==4">
-				<view class="cancelBtn" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn"v-if="orderData.ServiceState == null" @click="refundMoney">申请退款</view>
+				<view class="cancelBtn" v-else @click="refundDetail">退款详情</view>
 				<view class="payBtn" @click="timeShowClick" v-if="orderData.OrderState==1">立即预约</view>
 			</view>
 
@@ -378,6 +389,17 @@
 			}
 		},
 		methods: {
+			refundDetail(){
+				uni.navigateTo({
+					url:'../refundMoney/refundMoneyDetail?id='+this.orderData.AfterServiceID
+					
+				})
+			},
+			changeDetail(){
+				uni.navigateTo({
+					url:'../changeStore/changeStoreDetail?id='+this.orderData.ChangeShopID
+				})
+			},
 			changeStore(){
 				// 是否可以更换门店
 				this.haveChangeStore();

+ 7 - 1
pages/refundMoney/refundMoneyDetail.vue

@@ -69,7 +69,7 @@
 			<view class="title2">您可以修改退款申请后再次发起,平台会重新处理</view>
 		</view>
 		<!-- 同意申请 -->
-		<view class="tongyiView" v-if="state!=1">
+		<view class="tongyiView" v-if="state!=1" @click="goSchedule()">
 			<view class="title1">进度详情</view>
 			<image src="../../static/img/rightArrow.png" mode="" style="width: 14rpx; height: 23rpx;"></image>
 		</view>
@@ -141,6 +141,12 @@
 			this.getData();
 		},
 		methods: {
+			goSchedule(){
+				uni.navigateTo({
+					
+					url: 'refundSchedule?id=' + this.detailData.ID
+				})
+			},
 			goOrderDetail() {
 				uni.navigateTo({
 					

+ 110 - 0
pages/refundMoney/refundSchedule.vue

@@ -0,0 +1,110 @@
+<template>
+	<view class="content">
+		
+			<view class="itemBg" v-for="(item,index) in itemData">
+				<view class="leftView">
+					<view class="redCircle"></view>
+					<view class="grayLine"></view>
+				</view>
+				<view class="rightView">
+					 <!-- "bizType"操作类型 1提交申请 2修改申请 3平台处理 4撤销申请 -->
+					<view class="name"v-if="item.bizType==1">提交申请</view>
+					<view class="name"v-if="item.bizType==2">修改申请</view>
+					<view class="name"v-if="item.bizType==3">平台处理</view>
+					<view class="name"v-if="item.bizType==4">撤销申请</view>
+					<view class="contents">{{item.contents}}</view>
+					<view class="time">{{item.createTime}}</view>
+				</view>
+				
+				
+			</view>
+		
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				itemData:[],
+				id:'',
+			}
+		},
+		onLoad(opt) {
+			this.id = opt.id
+			this.getData();
+		},
+		methods: {
+			getData() {
+				uni.showLoading({
+					title: '加载中'
+				})
+				
+				let url = 'worldKeepCar/orderRefund/scheduleDetails',
+					params = {
+						id: this.id,
+						
+					}
+				this.$http(url, params, 'GET').then(res => {
+					uni.hideLoading()
+					
+					this.itemData = res.data
+					
+					
+			
+			
+				})
+			}
+		}
+	}
+</script>
+
+<style>
+	.content {
+		background-color: #FFFFFF;
+		min-height: 100vh;
+		padding: 30rpx 0;
+	}
+	
+	.itemBg {
+		background-color: #FFFFFF;
+		display: flex;
+	}
+	.leftView{
+		width: 40rpx;
+		padding: 0 20rpx;
+		display:flex;
+		flex-direction:column;
+		align-items:center;
+	}
+	.redCircle{
+		width: 22rpx;
+		height: 22rpx;
+		border-radius: 11rpx;
+		background: #FF2400;
+	}
+	.grayLine{
+		width: 2px;
+		height: 90%;
+		background: #F4F5F7;
+	}
+	.rightView{
+		padding: 0 20rpx 60rpx;
+	}
+	.name{
+		color: #333333;
+		font-size: 28rpx;
+		font-weight: bold;
+	}
+	.contents{
+		color: #333333;
+		font-size: 24rpx;
+		padding: 10rpx 0;
+	}
+	.time{
+		color: #999999;
+		font-size: 22rpx;
+		
+	}
+</style>