瀏覽代碼

1.更换门店

guo 3 年之前
父節點
當前提交
07fc2529b4

+ 145 - 22
pages/changeStore/changeStore.vue

@@ -6,11 +6,11 @@
 			<view class="leftTitle2" style="padding: 24rpx 0; border-bottom: 1rpx solid #EEEEEE;">原服务门店信息</view>
 
 			<view class="shopBg">
-				<view class="leftTitle2">这是门店名称</view>
+				<view class="leftTitle2">{{oldStoreName}}</view>
 				<view class="addrressBg">
 					<image src="../../static/img/icon_coordinate.png" mode="" style="width: 22rpx; height: 30rpx;">
-					</image>
-					<view style="color: #999999; font-size: 24rpx; margin-left: 20rpx;">江苏省南京市鼓楼区铁路南街233号</view>
+					</image>
+					<view style="color: #999999; font-size: 24rpx; margin-left: 20rpx;">{{oldStoreAddress}}</view>
 				</view>
 			</view>
 		</view>
@@ -19,10 +19,8 @@
 			<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="storeArr" @change="storeChange">
-					<view class="blackColor" :class="{grayColor: store==''}">{{store?store:'请选择'}}</view>
-				</picker>
-
+					<view class="blackColor width70" :class="{grayColor: store==''}" @click="storeChange">{{store?store:'请选择'}}</view>
+			
 				<image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
 
 
@@ -35,8 +33,11 @@
 			<view class="viewBg" style="border-bottom: 1rpx solid #EEEEEE;">
 				<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 :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>
@@ -54,6 +55,10 @@
 			</view>
 		</view>
 
+		<view class="bottom">
+			<view class="shoreDz" @click="submit">提交</view>
+		</view>
+
 
 	</view>
 </template>
@@ -61,24 +66,114 @@
 <script>
 	export default {
 		data() {
-			return {
+			return {
+				sheetId:'',
+				oldStoreName: '',
+				oldStoreAddress: '',
 				store: '',
-				storeArr: ['1店', '2店'],
-				reasonArray: ['距离太远', '服务不好'],
-				reason: '',
+				storeId:'',
+				reasonArray: [],
+				reasonId: '',
+				firstIndex: null,
 				exeContent: '',
 			}
 		},
+		onLoad(opt) {
+			this.sheetId = opt.sheetId;
+			this.oldStoreName = opt.oldStoreName;
+			this.oldStoreAddress = opt.oldStoreAddress;
+			this.getChangeData();
+			console.log(this.sheetId);
+		},
+		onShow() {
+			let storeMes = uni.getStorageSync('changeStore')
+			this.storeId = storeMes.shopId
+			this.store = storeMes.shopName
+		},
 		methods: {
+			submit() {
+				if (this.store == '') {
+					uni.showToast({
+						title: '请选择更换门店',
+						icon: 'none',
+						duration: 2000,
+					});
+					return;
+				}
+				if (this.reasonId == '') {
+					uni.showToast({
+						title: '请选择更换原因',
+						icon: 'none',
+						duration: 2000,
+					});
+					return;
+				}
+				
+
+				uni.showLoading({});
+
+				this.$http('worldKeepCar/orderChangeShop/applyChangeShop', {
+					sheetId: this.sheetId,
+					applyReasonId: this.reasonId,
+					applyReason: this.reasonArray[this.firstIndex].contents,
+					
+					reasonComment: this.exeContent,
+					newShopID: this.storeId,
+					newShopName: this.store,
+
+				}, 'POST').then(res => {
+					uni.hideLoading();
+					if (res.code == 0) {
+						uni.showToast({
+							title: '提交成功',
+							icon: 'none',
+							duration: 2000,
+						});
+						uni.removeStorageSync('changeStore')
+						
+						setTimeout(function() {
+							uni.navigateBack({
+
+							})
+						}, 2000);
+					}
+
+
+
+				})
+			},
+			getChangeData() {
+				uni.showLoading({
+					title: '加载中'
+				})
+				let url = 'worldKeepCar/orderChangeShop/refuseReasonList',
+					params = {
+						type: 1,
+
+					}
+				this.$http(url, params, 'GET').then(res => {
+
+					uni.hideLoading();
+
+
+					this.reasonArray = res.data
+
+
+				})
+			},
 			feedDone(e) {
 				this.exeContent = e.target.value
 
 			},
 			storeChange(e) {
-				this.store = this.storeArr[e.detail.value];
+				uni.navigateTo({
+					
+					url:'../module/orderShop?fromChangeStore=true'
+				}) 
 			},
 			reasonChange(e) {
-				this.reason = this.reasonArray[e.detail.value];
+				this.firstIndex = e.target.value
+				this.reasonId = this.reasonArray[this.firstIndex].id
 			}
 		}
 	}
@@ -97,14 +192,17 @@
 		margin: 20rpx 24rpx;
 		padding: 0 20rpx;
 	}
-	.shopBg{
-		padding: 30rpx 0;
-	}
-	.addrressBg{
-		padding-top: 12rpx;
-		display: flex;
-		align-items: center;
+
+	.shopBg {
+		padding: 30rpx 0;
+	}
+
+	.addrressBg {
+		padding-top: 12rpx;
+		display: flex;
+		align-items: center;
 	}
+
 	.viewBg {
 		display: flex;
 		align-items: center;
@@ -145,4 +243,29 @@
 		color: #333333;
 
 	}
+
+	.bottom {
+		width: 750rpx;
+		height: 120rpx;
+		background: #FFFFFF;
+		box-shadow: 0px -4px 8px 0px rgba(153, 153, 153, 0.08);
+		position: fixed;
+		left: 0;
+		bottom: 0;
+		display: flex;
+		justify-content: space-around;
+	}
+
+	.shoreDz {
+		width: 702rpx;
+		height: 74rpx;
+
+		background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
+		border-radius: 37rpx;
+		text-align: center;
+		line-height: 74rpx;
+		color: #FFFFFF;
+		font-size: 30rpx;
+		margin-top: 24rpx;
+	}
 </style>

+ 30 - 9
pages/module/orderShop.vue

@@ -45,6 +45,7 @@ export default {
 			currentMileage:'',
 			location:'',
 			queryShopList:[],
+			fromChangeStore:'',
 		}
 	},
 	onShow() {
@@ -55,20 +56,40 @@ export default {
 		this.currentMileage=opt.currentMileage;
 		this.location=uni.getStorageSync("location");
 		this.getqueryShopList()
+		
+		this.fromChangeStore = opt.fromChangeStore;
+		
 	},
 	methods: {
 		ckshop(item){
 			console.log(item)
 			var that=this;
-			uni.setStorage({
-				key: 'orderShop',
-				data: item,
-				success: function() {
-					uni.navigateTo({
-						url:'confirmOrder?orderData='+that.orderData+'&currentMileage='+that.currentMileage
-					}) 
-				}
-			});
+			
+			if (that.fromChangeStore == 'true') {
+				console.log('更换门店');
+				// 从更换门店 进来 
+				uni.setStorage({
+					key: 'changeStore',
+					data: item,
+					success: function() {
+						uni.navigateBack({
+							
+						})
+					}
+				});
+			} 
+			else{
+				uni.setStorage({
+					key: 'orderShop',
+					data: item,
+					success: function() {
+						uni.navigateTo({
+							url:'confirmOrder?orderData='+that.orderData+'&currentMileage='+that.currentMileage
+						}) 
+					}
+				});
+			}
+			
 		},
 	
 		getqueryShopList(){

+ 3 - 2
pages/order/orderDetail.vue

@@ -379,6 +379,7 @@
 		},
 		methods: {
 			changeStore(){
+				// 是否可以更换门店
 				this.haveChangeStore();
 			},
 			haveChangeStore(){
@@ -394,7 +395,7 @@
 					
 					if (res.code == 0) {
 						uni.navigateTo({
-							url: '../changeStore/changeStore?id'+this.id
+							url: '../changeStore/changeStore?sheetId='+this.id +'&oldStoreName='+ this.orderData.ShopName+'&oldStoreAddress='+ this.orderData.ProvinceName+ this.orderData.CityName+this.orderData.AreaName+this.orderData.Address
 						})
 					}
 					
@@ -549,7 +550,7 @@
 					
 					if (res.code == 0) {
 						uni.navigateTo({
-							url:'../refundMoney/refundMoney?sheetId='+this.id +'&maxMoney=' + this.orderData.PayMoney
+							url:'../refundMoney/refundMoney?sheetId='+ this.id +'&maxMoney=' + this.orderData.PayMoney
 						
 						})
 					}

+ 1 - 1
pages/refundMoney/refundMoney.vue

@@ -131,7 +131,7 @@
 
 
 					this.reasonArray = res.data
-					console.log(this.reasonArray);
+					
 
 				})
 			},

文件差異過大導致無法顯示
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/orderDetail.js.map


文件差異過大導致無法顯示
+ 0 - 882
unpackage/dist/dev/mp-weixin/pages/order/orderDetail.js