Browse Source

1.我的订单,订单详情

guo 3 years ago
parent
commit
986d625b70

+ 31 - 45
pages/order/myorder.vue

@@ -12,26 +12,40 @@
 			<view class="itemBg" v-for="(item,index) in items" @click="goDetail(item.ID)">
 				<view class="itemTop">
 					<view style="color: #999999; font-size: 24rpx;">保养订单</view>
-					<view class="itemSheetState">待付款</view>
+					<view class="itemSheetState" v-if="item.SheetState==1">待付款</view>
 					<view class="itemSheetState" v-if="item.SheetState==2">待确定</view>
 					<view class="itemSheetState" v-if="item.SheetState==3">待收货</view>
 					<view class="itemSheetState" v-if="item.SheetState==4">待服务</view>
-					<view class="itemSheetState" v-if="item.SheetState==5">待评价</view>
+					<view class="itemSheetState" v-if="item.SheetState==5">已完成</view>
+					<view class="itemSheetState" v-if="item.SheetState==0">已取消</view>
 				</view>
 				<view class="itemShopBg">
-					<view class="shopName">这是门店名称</view>
-					<view class="price">231.8</view>
+					<view class="shopName">{{item.ShopName}}</view>
+					<view class="price">¥{{item.raleMoney}}</view>
 				</view>
-				<view class="itemName">项目名称1,项目名称2,项目名称3,项目名称1,项目名称2,项目名称3项目名称1,项目名称2,项目名称3</view>
-				<view class="plateNumber">鲁A12345(2000km)</view>
-
-				<view class="itemLineBottom" v-if="item.SheetState==0||item.SheetState==3||item.SheetState==4">
-					<view class="itemBtn1" v-if="item.SheetState==1" @click.stop="cancelOrder(item)">取消订单</view>
+				<view class="itemName">{{item.itemNameList}}</view>
+				<view class="itemName">{{item.goodNameList}}</view>
+				<view class="plateNumber">{{item.PlateNumber}}</view>
 
+				<view class="itemLineBottom">
 					<view class="itemBtn2" v-if="item.SheetState==1" @click.stop="orderPay(item)">立即支付</view>
-					<view class="itemBtn2" v-if="item.EvaluateState==0&&item.EState==1" @click.stop="goEvaluate(item)">
+					
+					<!-- ChangeState  更换门店:1待处理2更换成功3更换关闭    3的不展示 -->
+					<view class="orderState" v-if="item.ChangeState==1">更换门店中</view>
+					<view class="orderState" v-if="item.ChangeState==2">更换成功</view>
+					
+					<!-- ServiceState  退款申请:1待处理2退款成功3退款关闭    3的不展示 -->
+					<view class="orderState" v-if="item.ServiceState==1">更换门店中</view>
+					<view class="orderState" v-if="item.ServiceState==2">更换成功</view>
+					
+
+					<view class="itemBtn2" v-if="item.SheetState==5&&item.EvaluateState==0"
+						@click.stop="goEvaluate(item)">
 						立即评价</view>
-					<view class="itemBtn1" v-if="item.EvaluateState==1" @click.stop="gopingjia(item)">查看评价</view>
+					<view class="itemBtn1" v-if="item.SheetState==5&&item.EvaluateState==1"
+						@click.stop="gopingjia(item)">
+						查看评价</view>
+
 				</view>
 
 
@@ -64,12 +78,8 @@
 		},
 		onShow() {
 			console.log(this.tabIndex)
-			// var evaluate = uni.getStorageSync("evaluate")
-			// if(evaluate){
 
 			this.getData()
-			// 	  uni.removeStorageSync('evaluate');
-			// } 
 
 		},
 		methods: {
@@ -83,28 +93,7 @@
 					url: '../me/myAppraiseDetail?id=' + item.ID
 				})
 			},
-			cancelOrder(item) {
-				var that = this;
-				uni.showModal({
-					title: '提示',
-					content: '确定要取消订单吗',
-					success: function(res) {
-						if (res.confirm) {
-							uni.showLoading({});
-							that.$http('miniAppMyBMemberCar/updateBMSheetState', {
-								id: item.ID
-							}, 'POST').then(res => {
-								uni.hideLoading();
-								that.page = 1;
-
-								that.getData()
-							})
-						} else if (res.cancel) {
 
-						}
-					}
-				});
-			},
 
 			tabClick(num) {
 				this.tabIndex = num;
@@ -114,9 +103,9 @@
 				this.getData()
 			},
 			goDetail(id) {
-				// uni.navigateTo({
-				// 	url: 'orderDetail?id=' + id
-				// })
+				uni.navigateTo({
+					url: 'orderDetail?id=' + id
+				})
 			},
 			getData() {
 				uni.showLoading({
@@ -133,7 +122,7 @@
 						var padata = {
 							page: this.page,
 							limit: 10,
-							evaluateState:'待评价'
+							evaluateState: '待评价'
 						}
 					} else {
 						var padata = {
@@ -194,11 +183,7 @@
 		},
 		onReachBottom() {
 			this.page++;
-			/* if(this.tabindex==2){
-				this.getbMemberShopList()
-			}else if(this.tabindex==3){
-				this.getShopFootprint()
-			} */
+
 			this.getData()
 		},
 		onPullDownRefresh() {
@@ -240,6 +225,7 @@
 
 	.main {
 		padding-top: 92rpx;
+		padding-bottom: 20rpx;
 		background-color: #F4F5F7;
 	}
 

File diff suppressed because it is too large
+ 1019 - 899
pages/order/orderDetail.vue


BIN
static/img/baiback22.png


BIN
static/img/icon_che.png


BIN
static/img/icon_ditu.png


BIN
static/img/icon_phone.png


BIN
static/img/icon_ren.png


BIN
static/img/icon_store.png


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/myorder.js.map


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


+ 0 - 4
unpackage/dist/dev/mp-weixin/pages/index/index.js

@@ -242,10 +242,6 @@ __webpack_require__.r(__webpack_exports__);
 
 
 
-
-
-
-
 
 
 

+ 18 - 33
unpackage/dist/dev/mp-weixin/pages/order/myorder.js

@@ -184,6 +184,20 @@ __webpack_require__.r(__webpack_exports__);
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
@@ -219,12 +233,8 @@ __webpack_require__.r(__webpack_exports__);
   },
   onShow: function onShow() {
     console.log(this.tabIndex);
-    // var evaluate = uni.getStorageSync("evaluate")
-    // if(evaluate){
 
     this.getData();
-    // 	  uni.removeStorageSync('evaluate');
-    // } 
 
   },
   methods: {
@@ -238,28 +248,7 @@ __webpack_require__.r(__webpack_exports__);
         url: '../me/myAppraiseDetail?id=' + item.ID });
 
     },
-    cancelOrder: function cancelOrder(item) {
-      var that = this;
-      uni.showModal({
-        title: '提示',
-        content: '确定要取消订单吗',
-        success: function success(res) {
-          if (res.confirm) {
-            uni.showLoading({});
-            that.$http('miniAppMyBMemberCar/updateBMSheetState', {
-              id: item.ID },
-            'POST').then(function (res) {
-              uni.hideLoading();
-              that.page = 1;
-
-              that.getData();
-            });
-          } else if (res.cancel) {
-
-          }
-        } });
 
-    },
 
     tabClick: function tabClick(num) {
       this.tabIndex = num;
@@ -269,9 +258,9 @@ __webpack_require__.r(__webpack_exports__);
       this.getData();
     },
     goDetail: function goDetail(id) {
-      // uni.navigateTo({
-      // 	url: 'orderDetail?id=' + id
-      // })
+      uni.navigateTo({
+        url: 'orderDetail?id=' + id });
+
     },
     getData: function getData() {var _this = this;
       uni.showLoading({
@@ -349,11 +338,7 @@ __webpack_require__.r(__webpack_exports__);
 
   onReachBottom: function onReachBottom() {
     this.page++;
-    /* if(this.tabindex==2){
-                 	this.getbMemberShopList()
-                 }else if(this.tabindex==3){
-                 	this.getShopFootprint()
-                 } */
+
     this.getData();
   },
   onPullDownRefresh: function onPullDownRefresh() {

File diff suppressed because it is too large
+ 1 - 1
unpackage/dist/dev/mp-weixin/pages/order/myorder.wxml


+ 1 - 0
unpackage/dist/dev/mp-weixin/pages/order/myorder.wxss

@@ -23,6 +23,7 @@
 }
 .main.data-v-1f8e8190 {
 	padding-top: 92rpx;
+	padding-bottom: 20rpx;
 	background-color: #F4F5F7;
 }
 .itemBg.data-v-1f8e8190 {

+ 37 - 2
unpackage/dist/dev/mp-weixin/pages/order/orderDetail.js

@@ -419,6 +419,39 @@ __webpack_require__.r(__webpack_exports__);
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
@@ -563,9 +596,11 @@ __webpack_require__.r(__webpack_exports__);
 
     },
     getData: function getData() {var _this = this;
-      uni.showLoading({});
+      uni.showLoading({
+        title: '加载中' });
+
 
-      this.$http('miniAppMyBMemberCar/queryMiniAppSheetDetail', {
+      this.$http('worldKeepCar/keepCarMy/queryMiNiAppTSheetDetail', {
         lat: this.location.lat,
         lng: this.location.lng,
         id: this.id },

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


+ 117 - 104
unpackage/dist/dev/mp-weixin/pages/order/orderDetail.wxss

@@ -1,17 +1,17 @@
 
-.box.data-v-cbd5a456{
+.box.data-v-cbd5a456 {
 	min-height: 100vh;
 	background: #F4F5F7;
 }
-.status_bar.data-v-cbd5a456{
-   background: #FF4F00;
-   width: 100vw;
-   position: fixed;
-   top: 0;
-   left: 0;
-   z-index: 1111;
+.status_bar.data-v-cbd5a456 {
+	background: #FF4F00;
+	width: 100vw;
+	position: fixed;
+	top: 0;
+	left: 0;
+	z-index: 1111;
 }
-.qrcodeBox.data-v-cbd5a456{
+.qrcodeBox.data-v-cbd5a456 {
 	width: 100vw;
 	height: 100vh;
 	display: flex;
@@ -20,15 +20,15 @@
 	position: fixed;
 	top: 0;
 	left: 0;
-	background: rgba(0,0,0,0.7);
+	background: rgba(0, 0, 0, 0.7);
 }
-.top.data-v-cbd5a456{
+.top.data-v-cbd5a456 {
 	width: 750rpx;
 	height: 342rpx;
 	background: #FF4F00;
 	/* background: linear-gradient(134deg, #FF8635 0%, #FF4828 100%); */
 }
-.nav.data-v-cbd5a456{
+.nav.data-v-cbd5a456 {
 	line-height: 44px;
 	font-size: 34rpx;
 	font-weight: 600;
@@ -41,100 +41,113 @@
 	z-index: 1111;
 	background: #FF4F00;
 }
-.gobackImg.data-v-cbd5a456{
+.gobackImg.data-v-cbd5a456 {
 	width: 92rpx;
 	height: 88rpx;
 	/* padding: 12px; */
 }
-.SheetState.data-v-cbd5a456{
+.SheetState.data-v-cbd5a456 {
 	font-size: 44rpx;
 	font-weight: 500;
 	color: #FFFFFF;
 	padding-left: 24rpx;
 	padding-top: 50rpx;
 }
-.orderTop.data-v-cbd5a456{
+.orderTop.data-v-cbd5a456 {
 	width: 702rpx;
 	background: #FFFFFF;
 	border-radius: 10rpx;
 	margin-left: 24rpx;
 }
-.timeEditImg.data-v-cbd5a456{
-	width: 25rpx;height: 25rpx;padding-left: 20rpx;
+.timeEditImg.data-v-cbd5a456 {
+	width: 25rpx;
+	height: 25rpx;
+	padding-left: 20rpx;
 }
-.timeLeft.data-v-cbd5a456{
-	font-size: 28rpx;
-	color: #3C3C3C;font-weight: 500;
+.timeLeft.data-v-cbd5a456 {
+	font-size: 32rpx;
+	color: #3C3C3C;
 }
-.timeRight.data-v-cbd5a456{
+.timeRight.data-v-cbd5a456 {
 	font-size: 26rpx;
 	color: #3F90F7;
 }
-.timeBox.data-v-cbd5a456{
+.timeBox.data-v-cbd5a456 {
 	display: flex;
 	justify-content: space-between;
 	padding: 24rpx 20rpx;
-	border-bottom: 1px solid #EEEEEE;
+	border-bottom: 1rpx solid #EEEEEE;
 }
-.orderTop.data-v-cbd5a456{
+.orderTop.data-v-cbd5a456 {
 	position: relative;
 	top: -44rpx;
 }
-.shopBoximg.data-v-cbd5a456{
-	width: 40rpx;height: 40rpx;
+.shopBoximg.data-v-cbd5a456 {
+	width: 40rpx;
+	height: 40rpx;
 }
-.shopRightImg.data-v-cbd5a456{
-	width: 52rpx;height: 38rpx;
+.shopRightImg.data-v-cbd5a456 {
+	width: 52rpx;
+	height: 60rpx;
 }
-.shopsx.data-v-cbd5a456{
+.shopsx.data-v-cbd5a456 {
 	width: 1px;
 	height: 50rpx;
 	background: #EEEEEE;
 	margin-top: 30rpx;
 	margin-left: 28rpx;
 }
-.shopBox.data-v-cbd5a456{
+.shopBox.data-v-cbd5a456 {
 	display: flex;
-	padding: 30rpx 20rpx 20rpx 20rpx;
+	padding: 0rpx 20rpx 36rpx 20rpx;
 }
-.shopCont.data-v-cbd5a456{
-	width: 418rpx;padding-left: 20rpx;
+.shopCont.data-v-cbd5a456 {
+	width: 418rpx;
+	padding-left: 20rpx;
 }
-.shopName.data-v-cbd5a456{
+.shopName.data-v-cbd5a456 {
 	font-size: 28rpx;
 	color: #3C3C3C;
+	font-weight: bold;
 }
-.Address.data-v-cbd5a456{
-	color: #999999;font-size: 26rpx;padding-top: 10rpx;
+.Address.data-v-cbd5a456 {
+	color: #999999;
+	font-size: 26rpx;
+	padding-top: 10rpx;
 }
-.shopRihgtTxt.data-v-cbd5a456{
-	color: #999999;font-size: 22rpx;padding-top: 5rpx;
+.shopRihgtTxt.data-v-cbd5a456 {
+	color: #999999;
+	font-size: 22rpx;
+	padding-top: 5rpx;
 }
-.shopRightBox.data-v-cbd5a456{
+.shopRightBox.data-v-cbd5a456 {
 	padding-top: 30rpx;
 	padding-left: 28rpx;
 }
-.peopleCont.data-v-cbd5a456{
+.peopleCont.data-v-cbd5a456 {
 	font-size: 28rpx;
-	font-weight: 500;
+	font-weight: bold;
 	color: #3C3C3C;
 	padding-left: 20rpx;
 }
-.people.data-v-cbd5a456{
+.people.data-v-cbd5a456 {
 	display: flex;
 	padding-left: 20rpx;
+	padding-top: 30rpx;
 	padding-bottom: 36rpx;
 }
-.PlateNumberBox.data-v-cbd5a456{
-	display: flex;padding-left: 20rpx;padding-bottom: 30rpx;
+.PlateNumberBox.data-v-cbd5a456 {
+	display: flex;
+	padding-left: 20rpx;
+	padding-bottom: 30rpx;
 }
-.PlateNumbercx.data-v-cbd5a456{
+.PlateNumbercx.data-v-cbd5a456 {
 	font-size: 28rpx;
-	font-weight: 500;
+	font-weight: bold;
 	color: #3C3C3C;
 	padding-left: 20rpx;
 }
-.PlateNumber.data-v-cbd5a456{
+.PlateNumber.data-v-cbd5a456 {
 	width: 130rpx;
 	height: 32rpx;
 	border-radius: 4rpx;
@@ -145,10 +158,10 @@
 	color: #F19D01;
 	margin-left: 26rpx;
 }
-.PlateNumberBoxTop.data-v-cbd5a456{
+.PlateNumberBoxTop.data-v-cbd5a456 {
 	display: flex;
 }
-.CarModel.data-v-cbd5a456{
+.CarModel.data-v-cbd5a456 {
 	font-size: 26rpx;
 	color: #999999;
 	padding-left: 20rpx;
@@ -157,7 +170,7 @@
 	padding-bottom: 15rpx;
 	width: 600rpx;
 }
-.detailedBox.data-v-cbd5a456{
+.detailedBox.data-v-cbd5a456 {
 	width: 702rpx;
 	background: #FFFFFF;
 	border-radius: 10px;
@@ -165,37 +178,37 @@
 	margin-top: -60rpx;
 	padding-bottom: 20rpx;
 }
-.itemBox.data-v-cbd5a456{
+.itemBox.data-v-cbd5a456 {
 	margin-top: 20rpx;
 }
-.detailedTitle.data-v-cbd5a456{
+.detailedTitle.data-v-cbd5a456 {
 	font-size: 32rpx;
 	color: #3C3C3C;
-	padding-left: 20rpx;padding-top: 30rpx;
-	font-weight: 600;
+	padding-left: 20rpx;
+	padding-top: 30rpx;
 	padding-bottom: 10rpx;
 }
-.detailedLine.data-v-cbd5a456{
+.detailedLine.data-v-cbd5a456 {
 	display: flex;
 	padding-left: 20rpx;
 	padding-top: 40rpx;
 }
-.detailedImg.data-v-cbd5a456{
+.detailedImg.data-v-cbd5a456 {
 	width: 120rpx;
 	height: 120rpx;
 	border-radius: 10rpx;
 }
-.detailedCont.data-v-cbd5a456{
+.detailedCont.data-v-cbd5a456 {
 	padding-left: 20rpx;
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 }
-.detailedName.data-v-cbd5a456{
+.detailedName.data-v-cbd5a456 {
 	font-size: 26rpx;
 	color: #3C3C3C;
 }
-.detailedContBottom.data-v-cbd5a456{
+.detailedContBottom.data-v-cbd5a456 {
 	display: flex;
 	justify-content: space-between;
 	font-size: 26rpx;
@@ -203,12 +216,12 @@
 	width: 500rpx;
 	line-height: 40rpx;
 }
-.SalePrice.data-v-cbd5a456{
+.SalePrice.data-v-cbd5a456 {
 	font-size: 32rpx;
 	font-weight: 500;
 	color: #3C3C3C;
 }
-.goodscost.data-v-cbd5a456{
+.goodscost.data-v-cbd5a456 {
 	width: 702rpx;
 	background: #FFFFFF;
 	border-radius: 10px;
@@ -216,17 +229,17 @@
 	margin-top: 20rpx;
 	padding: 15rpx 0;
 }
-.goodscostLine.data-v-cbd5a456{
+.goodscostLine.data-v-cbd5a456 {
 	display: flex;
 	justify-content: space-between;
 	font-size: 28rpx;
 	padding: 20rpx 20rpx;
 	color: #666666;
 }
-.goodsCostNum.data-v-cbd5a456{
+.goodsCostNum.data-v-cbd5a456 {
 	color: #3C3C3C;
 }
-.information.data-v-cbd5a456{
+.information.data-v-cbd5a456 {
 	width: 702rpx;
 	background: #FFFFFF;
 	border-radius: 10px;
@@ -234,18 +247,19 @@
 	margin-top: 20rpx;
 	padding: 0rpx 0 15rpx 0;
 }
-.informationLine.data-v-cbd5a456{
-	display: flex;font-size: 26rpx;
+.informationLine.data-v-cbd5a456 {
+	display: flex;
+	font-size: 26rpx;
 	padding: 15rpx 20rpx;
 }
-.informationTxt.data-v-cbd5a456{
-	width: 150rpx;
+.informationTxt.data-v-cbd5a456 {
+	width: 190rpx;
 	color: #666666;
 }
-.informationNum.data-v-cbd5a456{
+.informationNum.data-v-cbd5a456 {
 	color: #333333;
 }
-.copyBtn.data-v-cbd5a456{
+.copyBtn.data-v-cbd5a456 {
 	width: 86rpx;
 	height: 40rpx;
 	background: #F4F5F7;
@@ -256,7 +270,7 @@
 	line-height: 40rpx;
 	margin-left: 20rpx;
 }
-.orderBottom.data-v-cbd5a456{
+.orderBottom.data-v-cbd5a456 {
 	width: 750rpx;
 	height: 98rpx;
 	background: #FFFFFF;
@@ -266,7 +280,7 @@
 	display: flex;
 	justify-content: flex-end;
 }
-.cancelBtn.data-v-cbd5a456{
+.cancelBtn.data-v-cbd5a456 {
 	width: 150rpx;
 	height: 56rpx;
 	border-radius: 36rpx;
@@ -276,8 +290,10 @@
 	font-size: 28rpx;
 	color: #3C3C3C;
 	margin-top: 21rpx;
+	margin-right: 16rpx;
+	margin-left: 20rpx;
 }
-.payBtn.data-v-cbd5a456{
+.payBtn.data-v-cbd5a456 {
 	width: 150rpx;
 	height: 56rpx;
 	border-radius: 36rpx;
@@ -288,74 +304,75 @@
 	color: #FF4F00;
 	margin-top: 21rpx;
 	margin-right: 16rpx;
-	margin-left: 40rpx;
+	margin-left: 20rpx;
 }
-.timeBox2.data-v-cbd5a456{
+.timeBox2.data-v-cbd5a456 {
 	width: 100vw;
 	height: 100vh;
-	background: rgba(0,0,0,0.5);
+	background: rgba(0, 0, 0, 0.5);
 	position: fixed;
 	top: 0;
 	left: 0;
 }
-.timeLeftActive.data-v-cbd5a456{
+.timeLeftActive.data-v-cbd5a456 {
 	background: #FFFFFF;
 }
-.timeMain.data-v-cbd5a456{
+.timeMain.data-v-cbd5a456 {
 	width: 100vw;
 	height: 70vh;
 	margin-top: 30vh;
 	background: #FFFFFF;
 	border-radius: 24rpx 24rpx 0px 0px;
 }
-.timesfNo.data-v-cbd5a456{
+.timesfNo.data-v-cbd5a456 {
 	background: #F5F5F5;
 }
-.timesfActive.data-v-cbd5a456{
+.timesfActive.data-v-cbd5a456 {
 	background: #FF4F00;
 }
-.timesfActive .timeSfNum.data-v-cbd5a456{
+.timesfActive .timeSfNum.data-v-cbd5a456 {
 	color: #FFFFFF;
 }
-.timesfActive .timeyy.data-v-cbd5a456{
+.timesfActive .timeyy.data-v-cbd5a456 {
 	color: #FFFFFF;
 }
-.topBox.data-v-cbd5a456{
+.topBox.data-v-cbd5a456 {
 	padding: 20rpx 24rpx;
 }
-.timeTop.data-v-cbd5a456{
+.timeTop.data-v-cbd5a456 {
 	display: flex;
 	line-height: 90rpx;
 	padding-left: 24rpx;
 	padding-right: 24rpx;
 	justify-content: space-between;
 }
-.timeTopTitle.data-v-cbd5a456{
+.timeTopTitle.data-v-cbd5a456 {
 	font-size: 30rpx;
 	font-family: PingFangSC-Medium, PingFang SC;
 	font-weight: 600;
 	color: #3C3C3C;
 }
-.close.data-v-cbd5a456{
-	color: #999999;font-size: 30rpx;
+.close.data-v-cbd5a456 {
+	color: #999999;
+	font-size: 30rpx;
 	padding-left: 30rpx;
 }
-.timeCont.data-v-cbd5a456{
+.timeCont.data-v-cbd5a456 {
 	height: calc(70vh - 210rpx);
 }
-.timeSv.data-v-cbd5a456{
+.timeSv.data-v-cbd5a456 {
 	height: calc(70vh - 210rpx);
 }
-.timeLeft2.data-v-cbd5a456{
+.timeLeft2.data-v-cbd5a456 {
 	width: 162rpx;
 	background: #F4F5F7;
 	border-top: 1px soid #F4F5F7;
-	border-right:1px soid #F4F5F7 ;
+	border-right: 1px soid #F4F5F7;
 }
-.timeRight2.data-v-cbd5a456{
+.timeRight2.data-v-cbd5a456 {
 	width: 588rpx;
 }
-.timesf.data-v-cbd5a456{
+.timesf.data-v-cbd5a456 {
 	width: 165rpx;
 	height: 98rpx;
 	border-radius: 7rpx;
@@ -364,7 +381,7 @@
 	margin-left: 20rpx;
 	margin-bottom: 24rpx;
 }
-.timeBottom.data-v-cbd5a456{
+.timeBottom.data-v-cbd5a456 {
 	width: 750rpx;
 	height: 120rpx;
 	background: #FFFFFF;
@@ -372,23 +389,23 @@
 	display: flex;
 	align-items: center;
 }
-.timerightBox.data-v-cbd5a456{
+.timerightBox.data-v-cbd5a456 {
 	display: flex;
 	flex-wrap: wrap;
 }
-.timeCont.data-v-cbd5a456{
+.timeCont.data-v-cbd5a456 {
 	display: flex;
 }
-.timeSfNum.data-v-cbd5a456{
+.timeSfNum.data-v-cbd5a456 {
 	color: #666666;
 	font-size: 28rpx;
 	padding-top: 15rpx;
 }
-.timeyy.data-v-cbd5a456{
+.timeyy.data-v-cbd5a456 {
 	font-size: 24rpx;
 	color: #999999;
 }
-.timecomplete.data-v-cbd5a456{
+.timecomplete.data-v-cbd5a456 {
 	width: 690rpx;
 	height: 74rpx;
 	background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
@@ -399,15 +416,11 @@
 	color: #FFFFFF;
 	margin-left: 30rpx;
 }
-.timeleftLine.data-v-cbd5a456{
+.timeleftLine.data-v-cbd5a456 {
 	font-size: 30rpx;
 	color: #999999;
 	text-align: center;
 	padding: 28rpx 10rpx;
 	border-bottom: 1px solid #EEEEEE;
 }
-.goIndexImg.data-v-cbd5a456{
-	width: 92rpx;
-	height: 88rpx;
-}