Kaynağa Gözat

1.更换门店
2.申请退款

guo 3 yıl önce
ebeveyn
işleme
61b8a96a1d

+ 4 - 1
pages/changeStore/changeStore.vue

@@ -100,7 +100,10 @@
 			this.storeId = opt.storeId;
 			this.reasonId = opt.reasonId;
 			this.reason = opt.reason;
-			this.exeContent = opt.exeContent == null ? '' : opt.exeContent;
+			this.exeContent = opt.exeContent;
+			if (opt.exeContent == null || opt.exeContent == 'null') {
+				this.exeContent = ''
+			}
 		},
 		onShow() {
 			let storeMes = uni.getStorageSync('changeStore')

+ 18 - 12
pages/changeStore/changeStoreDetail.vue

@@ -24,17 +24,17 @@
 				<view class="progressT">
 					<view class="stateView">
 						<view class="progressTitle">提交申请</view>
-						<view class="time" v-if="state>0">2021-11-2 12:43</view>
+						<view class="time" v-if="state>0">{{detailData.createTime}}</view>
 					</view>
 					<view style="width: 9%;"></view>
 					<view class="stateView">
 						<view class="progressTitle">平台审核</view>
-						<view class="time" v-if="state>1">2021-11-2 12:43</view>
+						<view class="time" v-if="state>1">{{detailData.handlerTime}}</view>
 					</view>
 					<view style="width: 9%;"></view>
 					<view class="stateView">
 						<view class="progressTitle">平台同意更换</view>
-						<view class="time" v-if="state>2">2021-11-2 12:43</view>
+						<view class="time" v-if="state>2">{{detailData.handlerTime}}</view>
 					</view>
 				</view>
 			</view>
@@ -42,13 +42,13 @@
 			<!-- 更换关闭 -->
 			<view class="waitBg" v-if="state==0" style="height: 100rpx;">
 				<view class="title">更换关闭</view>
-				<view class="title3">2021年11月12日 12:43</view>
+				<view class="title3">{{detailData.handlerTime}}</view>
 			</view>
 
 			<!-- 平台拒绝 -->
 			<view class="waitBg" v-if="state==-1" style="height: 100rpx;">
 				<view class="title">平台已拒绝</view>
-				<view class="title3">2021年11月12日 12:43</view>
+				<view class="title3">{{detailData.handlerTime}}</view>
 			</view>
 		</view>
 
@@ -69,7 +69,7 @@
 			<view class="title2">您可以修改更换申请后再次发起,平台会重新处理</view>
 		</view>
 		<!-- 同意申请 -->
-		<view class="tongyiView" v-if="state==3">
+		<view class="tongyiView" v-if="state!=1">
 			<view class="title1">进度详情</view>
 			<image src="../../static/img/rightArrow.png" mode="" style="width: 14rpx; height: 23rpx;"></image>
 		</view>
@@ -123,9 +123,9 @@
 			</view>
 			<view class="informationLine">
 				<view class="informationTxt">订单单号:</view>
-				<view class="informationNum">{{detailData.sheetID}}</view>
-				<view class="copyBtn" @click="copy(orderData.sheetID)">复制</view>
-				<view style="color: #3F90F7; font-size: 26rpx; margin-left: 50rpx;">详情</view>
+				<view class="informationNum">{{detailData.sheetCode}}</view>
+				<view class="copyBtn" @click="copy(orderData.sheetCode)">复制</view>
+				<view style="color: #3F90F7; font-size: 26rpx; margin-left: 50rpx;" @click="goOrderDetail()">详情</view>
 			</view>
 
 		</view>
@@ -158,7 +158,13 @@
 		onShow() {
 			this.getData();
 		},
-		methods: {
+		methods: {
+			goOrderDetail() {
+				uni.navigateTo({
+					
+					url: '../order/orderDetail?id=' + this.detailData.sheetID
+				})
+			},
 			getData() {
 				uni.showLoading({
 					title: '加载中'
@@ -396,13 +402,13 @@
 	}
 
 	.informationTxt {
-		width: 130rpx;
+		
 		color: #666666;
 	}
 
 	.informationNum {
 		color: #333333;
-		width: 50%;
+		
 
 	}
 

+ 58 - 3
pages/refundMoney/refundMoney.vue

@@ -54,13 +54,29 @@
 				reason:'',
 				maxMoney: '',
 				money: '',
-				exeContent: '',
+				exeContent: '',
+				edit: '', //修改申请
+				editId: '',
 			}
 		},
 		onLoad(opt) {
 			this.sheetId = opt.sheetId;
 			this.maxMoney = opt.maxMoney;
-			this.getRefundData();
+			this.getRefundData();
+			
+			//修改申请
+			this.edit = opt.edit;
+			this.editId = opt.editId;
+			this.money = opt.money;
+			this.reasonId = opt.reasonId;
+			this.reason = opt.reason;
+			
+			this.exeContent = opt.exeContent;
+			if (opt.exeContent == null || opt.exeContent == 'null') {
+				this.exeContent = ''
+			}
+			
+			
 		},
 		methods: {
 			submit() {
@@ -89,6 +105,15 @@
 					return ;
 				}
 				
+				if (this.edit == 'true') {
+					console.log('修改申请');
+					this.editUrl();
+				} else {
+					this.addUrl();
+				}
+				
+			},
+			addUrl(){
 				uni.showLoading({});
 				
 				this.$http('worldKeepCar/orderRefund/applyRefund', {
@@ -114,7 +139,37 @@
 					}
 					
 					
-			
+							
+				})
+			},
+			editUrl(){
+				uni.showLoading({});
+				
+				this.$http('worldKeepCar/orderRefund/editApply', {
+					
+					applyReasonId:this.reasonId,
+					applyReason:this.reason,
+					money:this.money,
+					reasonComment: this.exeContent,
+					id:this.editId,
+					
+				}, 'POST').then(res => {
+					uni.hideLoading();
+					if(res.code==0){
+						uni.showToast({
+							title: '提交成功',
+							icon: 'none',
+							duration: 2000,
+						});
+						setTimeout(function() {
+							uni.navigateBack({
+								
+							})
+						}, 2000); 	
+					}
+					
+					
+							
 				})
 			},
 			getRefundData() {

+ 438 - 18
pages/refundMoney/refundMoneyDetail.vue

@@ -1,22 +1,442 @@
-<template>
-	<view>
-		
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
+<template>
+	<view class="content">
+		<view class="topView">
+			<!-- 待处理 -->
+			<view class="waitBg" v-if="state>0">
+				<view class="title">请等待平台处理</view>
+				<!-- 进度条 -->
+				<view class="progress">
+					<image :src="(state>0 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>0}">
+					</image>
+
+					<view class="line" :class="{lightLine:state>0}"></view>
+
+					<image :src="(state>1 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>1}">
+					</image>
+
+					<view class="line" :class="{lightLine:state>1}"></view>
+
+					<image :src="(state>2 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>2}">
+					</image>
+
+				</view>
+				<!-- 进度条 文字提示 -->
+				<view class="progressT">
+					<view class="stateView">
+						<view class="progressTitle">提交申请</view>
+						<view class="time" v-if="state>0">{{detailData.createTime}}</view>
+					</view>
+					<view style="width: 9%;"></view>
+					<view class="stateView">
+						<view class="progressTitle">平台审核</view>
+						<view class="time" v-if="state>1">{{detailData.handlerTime}}</view>
+					</view>
+					<view style="width: 9%;"></view>
+					<view class="stateView">
+						<view class="progressTitle">平台同意退款</view>
+						<view class="time" v-if="state>2">{{detailData.handlerTime}}</view>
+					</view>
+				</view>
+			</view>
+
+			<!-- 退款关闭 -->
+			<view class="waitBg" v-if="state==0" style="height: 100rpx;">
+				<view class="title">退款关闭</view>
+				<view class="title3">{{detailData.handlerTime}}</view>
+			</view>
+
+			<!-- 平台拒绝 -->
+			<view class="waitBg" v-if="state==-1" style="height: 100rpx;">
+				<view class="title">平台已拒绝</view>
+				<view class="title3">{{detailData.handlerTime}}</view>
+			</view>
+		</view>
+
+		<!-- 退款提交 -->
+		<view class="whiteView" v-if="state==1">
+			<view class="title1">您已成功发起退款申请,请耐心等待平台处理</view>
+			<view class="title2">平台同意后,系统将退款给您</view>
+			<view class="title3">如果平台拒绝,您可以修改退款申请后再次发起,平台会重新处理</view>
+		</view>
+		<!-- 退款关闭 -->
+		<view class="whiteView" v-if="state==0">
+			<view class="title1">您已撤销本次退款申请,如有问题仍未解决,您可以重新发起申请</view>
+
+		</view>
+		<!-- 平台拒绝 -->
+		<view class="whiteView" v-if="state==-1">
+			<view class="title1">平台拒绝原因:这是选择的原因</view>
+			<view class="title2">您可以修改退款申请后再次发起,平台会重新处理</view>
+		</view>
+		<!-- 同意申请 -->
+		<view class="tongyiView" v-if="state!=1">
+			<view class="title1">进度详情</view>
+			<image src="../../static/img/rightArrow.png" mode="" style="width: 14rpx; height: 23rpx;"></image>
+		</view>
+
+		
+
+
+		<!-- 退款信息 -->
+		<view class="whiteView">
+
+			<view class="informationLine">
+				<view class="informationTxt">退款原因:</view>
+				<view class="informationNum">{{detailData.applyReason}}</view>
+
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">申请退款金额:</view>
+				<view class="informationNum">¥{{detailData.money}}</view>
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">申请时间:</view>
+				<view class="informationNum">{{detailData.createTime}}</view>
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">补充描述:</view>
+				<view class="informationNum" v-if="detailData.applyReasonComment!=null">
+					{{detailData.applyReasonComment}}</view>
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">售后单号:</view>
+				<view class="informationNum">{{detailData.serviceCode}}</view>
+				<view class="copyBtn" @click="copy(orderData.serviceCode)">复制</view>
+			</view>
+			<view class="informationLine">
+				<view class="informationTxt">订单单号:</view>
+				<view class="informationNum">{{detailData.sheetCode}}</view>
+				<view class="copyBtn" @click="copy(orderData.sheetCode)">复制</view>
+				<view style="color: #3F90F7; font-size: 26rpx; margin-left: 50rpx;" @click="goOrderDetail()">详情</view>
+			</view>
+
+		</view>
+
+		<!-- 底部按钮 操作 -->
+		<view style="height: 150rpx;"></view>
+		<view class="orderBottom" v-if="state==1">
+			<view class="cancelBtn" @click="cancelBtn">撤销申请</view>
+			<view class="cancelBtn" @click="editBtn">修改申请</view>
+		</view>
+
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				state: -1, // -1 拒绝 0自己撤销关闭 1 提交申请 3 同意申请
+				tongguoUrl: '../../static/img/icon_tongguo.png',
+				waitUrl: '../../static/img/icon_yuan.png',
+				id: '',
+				detailData: '',
+			}
+		},
+		onLoad(opt) {
+			this.id = opt.id
+			this.getData();
+		},
+		onShow() {
+			this.getData();
+		},
+		methods: {
+			goOrderDetail() {
+				uni.navigateTo({
+					
+					url: '../order/orderDetail?id=' + this.detailData.sheetID
+				})
+			},
+			getData() {
+				uni.showLoading({
+					title: '加载中'
+				})
+				let url = '/worldKeepCar/orderRefund/refundDetail',
+					params = {
+						id: this.id,
+
+					}
+				this.$http(url, params, 'GET').then(res => {
+
+					uni.hideLoading();
+
+					this.detailData = res.data
+
+					// 退款状态
+					// "changeState": 备注:处理状态1待处理2退款成功3退款关闭
+					if (this.detailData.serviceState == 1) {
+						// 平台处理
+						this.state = 1;
+					} else if (this.detailData.serviceState == 2) {
+						// 平台同意
+						this.state = 3;
+					}
+					if (this.detailData.handlerReasonID != null) {
+						// 拒绝
+						this.state = -1;
+					}
+					if (this.detailData.cancelType != null) {
+						// 关闭
+						this.state = 0;
+					}
+
+				})
+			},
+			copy(txt) {
+				uni.setClipboardData({
+					data: txt,
+					success: function() {
+						uni.showToast({
+							title: '复制成功',
+							icon: 'none',
+							duration: 2000
+						});
+					}
+				});
+			},
+			cancelBtn(){
+				
+					uni.showLoading({
+						title: '加载中'
+					})
+					let url = 'worldKeepCar/orderRefund/cancelApply',
+						params = {
+							id: this.detailData.ID,
+				
+						}
+					this.$http(url, params, 'POST').then(res => {
 				
+						uni.hideLoading();
+						
+						if(res.code==0){
+							uni.showToast({
+								title: '撤销成功',
+								icon: 'none',
+								duration: 2000,
+							});
+							setTimeout(function() {
+								uni.navigateBack({
+									
+								})
+							}, 2000); 	
+						}
+						
+					})
+				
+			},
+			editBtn(){
+				
+				uni.navigateTo({
+					
+					url:'refundMoney?edit=true'+'&editId='+this.detailData.id+'&money='+this.detailData.money+'&reasonId='+this.detailData.applyReasonID+'&reason='+this.detailData.applyReason+'&exeContent='+this.detailData.applyReasonComment
+				})
 			}
-		},
-		methods: {
 			
-		}
-	}
-</script>
-
-<style>
-
+			
+		}
+	}
+</script>
+
+<style>
+	.content {
+		background-color: #F4F5F7;
+		min-height: 100vh;
+	}
+
+	.topView {
+		background: linear-gradient(315deg, #FD5002 0%, #FE8F00 100%);
+		padding: 20rpx 24rpx;
+	}
+
+	.waitBg {
+		background-color: #FFFFFF;
+		border-radius: 20rpx;
+		height: 209rpx;
+		padding: 30rpx;
+	}
+
+	.title {
+		color: #333333;
+		font-size: 32rpx;
+		font-weight: bold;
+		margin-bottom: 30rpx;
+	}
+
+	.progress {
+		display: flex;
+
+		align-items: center;
+
+		padding: 10rpx 70rpx;
+	}
+
+
+
+	.waitImg {
+		width: 20rpx;
+		height: 20rpx;
+	}
+
+	.tongguoImg {
+		width: 38rpx;
+		height: 38rpx;
+	}
+
+	.line {
+		width: 40%;
+		margin: 0rpx 5rpx;
+		height: 2px;
+		background: #FF2400;
+		opacity: 0.4;
+	}
+
+	.lightLine {
+		width: 40%;
+		margin: 0rpx 5rpx;
+		height: 2px;
+		background: #FF2400;
+		opacity: 1.0;
+	}
+
+	.progressT {
+		display: flex;
+
+		align-items: center;
+
+	}
+
+	.stateView {
+		width: 30%;
+
+	}
+
+	.progressTitle {
+		color: #333333;
+		font-size: 22rpx;
+		text-align: center;
+	}
+
+	.time {
+		color: #999999;
+		font-size: 22rpx;
+		text-align: center;
+	}
+
+	.whiteView {
+		background-color: #FFFFFF;
+		padding: 30rpx 24rpx;
+		margin: 20rpx 0;
+	}
+
+	.title1 {
+		color: #3C3C3C;
+		font-size: 30rpx;
+		font-weight: bold;
+	}
+
+	.title2 {
+		color: #999999;
+		font-size: 24rpx;
+		padding-top: 16rpx;
+		padding-bottom: 8rpx;
+	}
+
+	.title3 {
+		color: #999999;
+		font-size: 24rpx;
+
+	}
+
+	.storeTitle {
+		color: #3C3C3C;
+		font-size: 30rpx;
+		font-weight: bold;
+		border-bottom: 1rpx #EEEEEE solid;
+		padding-bottom: 22rpx;
+	}
+
+	.store {
+		display: flex;
+		padding-top: 20rpx;
+		align-items: center;
+	}
+
+	.leftIcon {
+		width: 30rpx;
+		height: 30rpx;
+		margin-right: 10rpx;
+	}
+
+	.name {
+		color: #3C3C3C;
+		font-size: 26rpx;
+	}
+
+	.address {
+		color: #999999;
+		font-size: 26rpx;
+	}
+
+	.informationLine {
+		display: flex;
+		font-size: 26rpx;
+		padding: 20rpx 0;
+	}
+
+	.informationTxt {
+		
+		color: #666666;
+	}
+
+	.informationNum {
+		color: #333333;
+		
+
+	}
+
+	.copyBtn {
+		width: 86rpx;
+		height: 40rpx;
+		background: #F4F5F7;
+		border-radius: 20rpx;
+		font-size: 24rpx;
+		color: #333333;
+		text-align: center;
+		line-height: 40rpx;
+		margin-left: 20rpx;
+	}
+
+	.orderBottom {
+		width: 750rpx;
+		height: 98rpx;
+		background: #FFFFFF;
+		position: fixed;
+		left: 0;
+		bottom: 0;
+		display: flex;
+		justify-content: flex-end;
+	}
+
+	.cancelBtn {
+		width: 150rpx;
+		height: 56rpx;
+		border-radius: 36rpx;
+		border: 2rpx solid #DDDDDD;
+		text-align: center;
+		line-height: 56rpx;
+		font-size: 28rpx;
+		color: #3C3C3C;
+		margin-top: 21rpx;
+		margin-right: 16rpx;
+		margin-left: 20rpx;
+	}
+
+	.tongyiView {
+		display: flex;
+		justify-content: space-between;
+		align-items: center;
+		background-color: #FFFFFF;
+		padding: 30rpx 24rpx;
+		margin: 20rpx 0;
+	}
 </style>

+ 45 - 17
pages/refundMoney/refundMoneyList.vue

@@ -16,19 +16,24 @@
 		<view class="listContent">
 			<view class="itemBg" v-for="(item,index) in itemData">
 				<view class="firstView">
-					<view style="font-size: 24rpx; color: #999999;">申请单号:202111203368</view>
+					<view style="font-size: 24rpx; color: #999999;">申请单号:{{item.ServiceCode}}</view>
 					<view class="rightView">
-						<image src="../../static/img/icon_change.png" mode="" style="width: 30rpx; height: 30rpx; margin-right: 10rpx;"></image>
-						<view style="color: #666666; font-size: 24rpx;">更换门店</view>
+						<image src="../../static/img/icon_tuikuan2.png" mode="" style="width: 30rpx; height: 30rpx; margin-right: 10rpx;"></image>
+						<view style="color: #666666; font-size: 24rpx;">退款</view>
 					</view>
 				</view>
 				
-				<view class="shopName">更换前门店:这是门店名称</view>
-				<view class="shopName">更换后门店:这是门店名称</view>
-				<view class="stateView">待平台处理</view>
+				<view class="shopName">{{item.ShopName}}</view>
+				<view class="itemName">{{item.itemNameList}}</view>
+				<view class="itemName">{{item.goodNameList}}</view>
+				<!-- ServiceState":1待处理2退款成功3退款关闭 -->
+				<view class="stateView" v-if="item.ServiceState==1">待平台处理</view>
+				<view class="stateView" v-if="item.ServiceState==2">退款成功</view>
+				<view class="stateView" v-if="item.ServiceState==2 && item.MoneyState==1">退款成功 退款金额¥{{item.Money}}元</view>
+				<view class="stateView" v-if="item.ServiceState==3">退款关闭</view>
 				
 				<view style="display: flex; justify-content: flex-end;">
-					<view class="detail">更换详情</view>
+					<view class="detail" @click="goDetail(item.ID)">退款详情</view>
 				</view>
 			</view>
 		</view>
@@ -60,31 +65,49 @@
 				itemData:[],
 				noMoreShow: false,
 			}
+		},
+		onLoad() {
+			this.getData();
+		},
+		onShow() {
+			this.page = 1
+			this.getData();
 		},
 		methods: {
+			goDetail(id){
+				uni.navigateTo({
+					
+					url:'refundMoneyDetail?id='+id
+				})
+			},
 			tabClick(num) {
 				this.tabIndex = num;
-				// this.page = 1;
-				// this.getData()
+				this.page = 1;
+				this.getData()
 			},
 			search(val) {
 				// console.log(val);
 				this.searchValue = val
-				// this.page = 1
-				// this.getData()
+				this.page = 1
+				this.getData()
 			},
 			getData() {
 				uni.showLoading({
 					title: '加载中'
 				})
-				let url = 'accompany/SuperAccounts/queryMyteam',
+				var serviceStateStr = ''
+				if (this.tabIndex == 1) {
+					serviceStateStr = '1'
+				}
+				let url = 'worldKeepCar/keepCarMy/listTMSheetAfterServicePage',
 					params = {
 						page: this.page,
 						limit: 10,
-						name: this.searchValue
+						name: this.searchValue,
+						serviceState:serviceStateStr,
 					}
 				this.$http(url, params, 'GET').then(res => {
-					this.count = Number(res.data.count)
+					uni.hideLoading()
 					var list = res.data.Items
 			
 					// 处理 undefined和null转为空白字符串
@@ -96,9 +119,9 @@
 			
 			
 					if (this.page == 1) {
-						this.shopData = list
+						this.itemData = list
 					} else {
-						this.shopData = this.shopData.concat(list)
+						this.itemData = this.itemData.concat(list)
 					}
 			
 					if (list.length < 10) {
@@ -198,7 +221,12 @@
 	.shopName{
 		padding-bottom: 20rpx;
 		color: #333333;
-		font-size: 30rpx;
+		font-size: 26rpx;
+	}
+	.itemName{
+		padding-bottom: 20rpx;
+		color: #666666;
+		font-size: 24rpx;
 	}
 	.stateView{
 		background-color: #F8F9FB;

BIN
static/img/icon_tuikuan2.png