Browse Source

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

guo 3 years ago
parent
commit
f6befa313e

+ 1 - 1
pages/changeStore/changeStoreDetail.vue

@@ -143,7 +143,7 @@
 	export default {
 		data() {
 			return {
-				state: -1,// -1 拒绝1 提交申请 2 平台审核 3 同意申请
+				state: -1,// -1 平台拒绝 0撤销 1 提交申请 2 平台审核 3 同意申请
 				tongguoUrl: '../../static/img/icon_tongguo.png',
 				waitUrl: '../../static/img/icon_yuan.png',
 			}

+ 1 - 1
pages/order/orderDetail.vue

@@ -515,7 +515,7 @@
 			refundMoney(){
 				console.log('退款');
 				uni.navigateTo({
-					url:'../refundMoney/refundMoney?id='+this.id
+					url:'../refundMoney/refundMoney?id='+this.id +'&maxMoney=' + this.orderData.PayMoney
 				})
 			},
 			orderPay() {

+ 154 - 113
pages/refundMoney/refundMoney.vue

@@ -1,118 +1,159 @@
-<template>
-	<view class="box">
-		<view class="content">
-			<view class="viewBg">
-				<image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
-				<view class="leftTitle">退款原因</view>
-				<picker class="width70" mode="selector" :range="reasonArray"   @change="reasonChange" >
-					  <view class="blackColor" :class="{grayColor: reason==''}">{{reason?reason:'请选择'}}</view>
-				 </picker>
-				
-				<image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
-			</view>
+<template>
+	<view class="box">
+		<view class="content">
+			<view class="viewBg">
+				<image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
+				<view class="leftTitle">退款原因</view>
+				<picker :value="firstIndex" class="width70" mode="selector" :range="reasonArray" range-key="contents"
+					@change="reasonChange">
+					<view class="blackColor" :class="{grayColor: firstIndex==null}">
+						{{firstIndex == null ? '请选择' : reasonArray[firstIndex].contents}}
+					</view>
+				</picker>
+
+				<image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
+			</view>
+
+			<view class="moneyBg">
+				<view class="viewBg2">
+					<image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
+					<view class="leftTitle">退款金额</view>
+					<input class="blackColor" type="number" v-model="money" :placeholder="'最大可退 ¥'+maxMoney"
+						placeholder-style="color:#999999" />
+
+				</view>
+				<view class="grayColor">如全额退款,优惠券会退回到您的账户</view>
+			</view>
+
+
+			<view class="contentBg">
+				<view class="leftTitle">补充描述</view>
+
+				<textarea placeholder-style="color:#999999" placeholder="选填,请输入补充描述" v-model="exeContent"
+					class="textareaCont" maxlength="-1" auto-height="true" @confirm="feedDone" />
+
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				id:'',
+				reasonArray: [],
+				firstIndex: null,
+				reasonId: '',
+				maxMoney: '',
+				money: '',
+				exeContent: '',
+			}
+		},
+		onLoad(opt) {
+			this.id = opt.id;
+			this.maxMoney = opt.maxMoney;
+			this.getRefundData();
+		},
+		methods: {
+			getRefundData() {
+				uni.showLoading({
+					title: '加载中'
+				})
+				let url = 'worldKeepCar/orderRefund/refuseReasonList',
+					params = {
+						type: 3,
 			
-			<view class="moneyBg">
-				<view class="viewBg2">
-					<image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
-					<view class="leftTitle">退款金额</view>
-					<input class="blackColor" type="number" v-model ="money" placeholder="最大可退 ¥123"
-						placeholder-style="color:#999999" />
-					
-				</view>
-				<view class="grayColor">如全额退款,优惠券会退回到您的账户</view>
-			</view>
+					}
+				this.$http(url, params, 'GET').then(res => {
 			
+					uni.hideLoading();
 			
-			<view class="contentBg">
-				<view class="leftTitle">补充描述</view>
-				
-					<textarea placeholder-style="color:#999999" placeholder="选填,请输入补充描述" v-model="exeContent"
-						class="textareaCont" maxlength="-1" auto-height="true" @confirm="feedDone" />
-				
-			</view>
-		</view>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				maxMoney:'',
-				reasonArray:['不想要了','质量不好'],
-				reason:'',
-				money:'',
-				exeContent:'',
-			}
-		},
-		methods: {
-			feedDone(e) {
-				this.exeContent = e.target.value
 			
-			},
-			reasonChange(e){
-				this.reason = this.reasonArray[e.detail.value];
-			}
-		}
-	}
-</script>
-
-<style scoped>
-	.box {
-		min-height: 100vh;
-		background: #F4F5F7;
-		padding-top: 20rpx;
-	}
-	
-	.content{
-		background-color: #FFFFFF;
-		border-radius: 10rpx;
-		margin: 20rpx 24rpx;
-		padding: 0 20rpx;
-	}
-	.viewBg{
-		display: flex;
-		align-items: center;
-		padding: 30rpx 0;
-		border-bottom: 1rpx solid #EEEEEE;
-	}
-	.width70{
-		width: 70%;
-	}
-	.moneyBg{
-		padding: 30rpx 0;
-		border-bottom: 1rpx solid #EEEEEE;
-	}
-	.viewBg2{
-		display: flex;
-		align-items: center;
-		margin-bottom: 20rpx;
-	}
-	.leftTitle{
-		color: #333333;
-		font-size: 28rpx;
-		width: 130rpx;
-		margin-right: 50rpx;
-	}
-	.blackColor{
-		color: #333333;
-		font-size: 28rpx;
-	}
-	.grayColor{
-		color: #999999;
-		font-size: 28rpx;
-	}
-	.textareaCont {
-		
-		width: 70%;
-		font-size: 28rpx;
-		color: #333333;
-		
-	}
-	.contentBg{
-		display: flex;
-		align-items: center;
-		padding: 30rpx 0;
-		
-	}
+					this.reasonArray = res.data
+					console.log(this.reasonArray);
+			
+				})
+			},
+			feedDone(e) {
+				this.exeContent = e.target.value
+
+			},
+			reasonChange(e) {
+
+				this.firstIndex = e.target.value
+				this.reasonId = this.reasonArray[this.firstIndex].ID
+
+			},
+		}
+	}
+</script>
+
+<style scoped>
+	.box {
+		min-height: 100vh;
+		background: #F4F5F7;
+		padding-top: 20rpx;
+	}
+
+	.content {
+		background-color: #FFFFFF;
+		border-radius: 10rpx;
+		margin: 20rpx 24rpx;
+		padding: 0 20rpx;
+	}
+
+	.viewBg {
+		display: flex;
+		align-items: center;
+		padding: 30rpx 0;
+		border-bottom: 1rpx solid #EEEEEE;
+	}
+
+	.width70 {
+		width: 70%;
+	}
+
+	.moneyBg {
+		padding: 30rpx 0;
+		border-bottom: 1rpx solid #EEEEEE;
+	}
+
+	.viewBg2 {
+		display: flex;
+		align-items: center;
+		margin-bottom: 20rpx;
+	}
+
+	.leftTitle {
+		color: #333333;
+		font-size: 28rpx;
+		width: 130rpx;
+		margin-right: 50rpx;
+	}
+
+	.blackColor {
+		color: #333333;
+		font-size: 28rpx;
+	}
+
+	.grayColor {
+		color: #999999;
+		font-size: 28rpx;
+	}
+
+	.textareaCont {
+
+		width: 70%;
+		font-size: 28rpx;
+		color: #333333;
+
+	}
+
+	.contentBg {
+		display: flex;
+		align-items: center;
+		padding: 30rpx 0;
+
+	}
 </style>

File diff suppressed because it is too large
+ 1 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map


File diff suppressed because it is too large
+ 1 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/orderDetail.js.map


+ 2 - 1
unpackage/dist/dev/mp-weixin/app.json

@@ -73,5 +73,6 @@
       "desc": "获取定位"
     }
   },
-  "usingComponents": {}
+  "usingComponents": {},
+  "sitemapLocation": "sitemap.json"
 }

File diff suppressed because it is too large
+ 2 - 2
unpackage/dist/dev/mp-weixin/pages/index/index.js


File diff suppressed because it is too large
+ 3 - 3
unpackage/dist/dev/mp-weixin/pages/order/orderDetail.js