twt 1 年之前
父節點
當前提交
c863501cdc
共有 4 個文件被更改,包括 35 次插入15 次删除
  1. 4 1
      pages/index/confirmRescue.vue
  2. 4 0
      pages/index/shopList.vue
  3. 20 9
      pages/subPack/oldhistoryDetail.vue
  4. 7 5
      pages/user/historySpend.vue

+ 4 - 1
pages/index/confirmRescue.vue

@@ -136,6 +136,9 @@
 		onLoad(opt) {
 			this.themeColor = uni.getStorageSync("themeColor");
 			//this.userInfo = uni.getStorageSync("userInfo");
+			var customerInfo=uni.getStorageSync("wxOpenData").loginInfo.customerInfo;
+			this.customerName=customerInfo.customerName;
+			this.mobilePhone=customerInfo.mobilePhone;
 			this.userInfo = this.$store.state.userInfo;
 			this.shopName=opt.shopName;
 			this.opt=opt;
@@ -210,7 +213,7 @@
 					 if(res.code==0){
 						 uni.showModal({
 						     title: '提示',
-						     content: '预约成功',
+						     content: '救援信息提交成功',
 						 	confirmText:'返回首页',
 						 	cancelText:'查看订单',
 						     success: function (res) {

+ 4 - 0
pages/index/shopList.vue

@@ -199,6 +199,9 @@
 			},
 			init(){
 				var that = this;
+				uni.showLoading({
+					title: '加载中'
+				})
 				uni.authorize({
 					scope: 'scope.userLocation',
 					success() {
@@ -362,6 +365,7 @@
 							
 						}else{
 							console.log("接口获取失败")
+							uni.hideLoading();
 						}
 						
 					}

+ 20 - 9
pages/subPack/oldhistoryDetail.vue

@@ -21,8 +21,6 @@
 				<image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
 				<view class="shopCont">
 					<view class="shopName">{{orderData.shopName}}</view>
-				
-
 				</view>
 			
 			</view>
@@ -48,7 +46,14 @@
 					<view class="informationTxt">单号:</view>
 					<view class="informationNum">{{orderData.code}}</view>
 				</view>
-				
+				<view class="informationLine">
+					<view class="informationTxt">接车时间:</view>
+					<view class="informationNum">{{orderData.billDate}}</view>
+				</view>
+				<view class="informationLine">
+					<view class="informationTxt">服务顾问:</view>
+					<view class="informationNum">{{orderData.pickName}}</view>
+				</view>
 				
 				<view class="informationLine" v-if="Comment">
 					<view class="informationTxt">备注:</view>
@@ -67,12 +72,15 @@
 						<view class="detailedName"><span v-if="item.CardDetailID" class="kaColor">卡</span>{{item.ItemName}}
 						</view>
 						<view class="secondBox" :class="{noLine:index == orderData.listItems.length-1}">
-							<view class="comment" v-if="ItemComment&&item.Comment">{{item.Comment}}</view>
+							<view>
+								<view class="comment" v-if="ItemComment&&item.Comment">{{item.Comment}}</view>
+							</view>
+							
 							<view class="secondRight">
 								<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
-								<view class="price" v-if="ItemMoney">
+								<view class="price" v-if="ItemMoney&&item.RealMoney">
 									<span>¥</span>
-									{{item.AmountMoney?item.AmountMoney:0}}
+									{{item.RealMoney}}
 								</view>
 							</view>
 						</view>
@@ -95,12 +103,15 @@
 							<view class="qty">x{{item.SaleQty}}</view>
 						</view>
 						<view class="secondBox" :class="{noLine:index == orderData.listParts.length-1}">
-							<view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
+							<view>
+								<view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
+							</view>
+							
 							<view class="secondRight">
 								<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
-								<view class="price" v-if="ItemMoney">
+								<view class="price" v-if="ItemMoney&&item.RealMoney">
 									<span>¥</span>
-									{{item.AmountMoney?item.AmountMoney:0}}
+									{{item.RealMoney}}
 								</view>
 							</view>
 						</view>

+ 7 - 5
pages/user/historySpend.vue

@@ -81,7 +81,7 @@
 				<view v-if="item.EvaluateState == 1" @click.stop="goAppraiseDetail(item)" class="kan">查看评价</view>
 			</view>
 		</view>
-		<view class="itemHistory" v-for="(item,index) in oldlist" :key="index" @click="goDetail(item)">
+		<view class="itemHistory" v-for="(item,index) in oldlist" :key="index" @click="goDetail2(item)">
 			<view class="topBox">
 				<view class="dan">{{item.code}}</view>
 				
@@ -100,7 +100,7 @@
 					
 					<view class="mileage" v-if="item.CurrentMileage>0">{{item.CurrentMileage}}km</view>
 				</view>
-				<view v-if="ReceiptsMoney" class="price"><span style="font-size: 22rpx;">¥</span>{{item.money?item.money:0}}</view>
+				<view v-if="ReceiptsMoney&&item.money" class="price"><span style="font-size: 22rpx;">¥</span>{{item.money}}</view>
 			</view>
 			<view class="time">{{item.time}}</view>
 		
@@ -215,13 +215,15 @@
 				})
 			},
 			goDetail(item) {
-				/* uni.navigateTo({
+				 uni.navigateTo({
 					url: 'historyDetail?id=' + item.id + '&lastDay=' + item.lastDay
-				}) */
+				}) 
+
+			},
+			goDetail2(item){
 				uni.navigateTo({
 					url: '../subPack/oldhistoryDetail?id=' + item.id + '&lastDay=' + item.lastDay
 				})
-				
 			},
 			myOrderCoupon() {
 				let that = this