zhaoyun 2 өдөр өмнө
parent
commit
3ac4be43e6

+ 1 - 1
mer_mer_admin/src/utils/get-page-title.js

@@ -10,7 +10,7 @@
 
 import defaultSettings from '@/settings';
 
-const title = window.localStorage.getItem('platSiteName') || 'CRMEB Admin';
+const title = window.localStorage.getItem('platSiteName') || '易点到商户服务平台';
 
 export default function getPageTitle(pageTitle) {
   if (pageTitle) {

+ 2 - 2
mer_mer_admin/src/views/systemSetting/modifyStoreInfo/index.vue

@@ -54,7 +54,7 @@
                 <div class="from-tips">请上传小于500kb的图片(90*90 px)</div>
               </div>
             </el-form-item>
-            <el-form-item label="H5商户背景图:" prop="backImage">
+            <!-- <el-form-item label="H5商户背景图:" prop="backImage">
               <div class="upLoadPicBox acea-row" @click="modalPicTap('1', 'backImage')">
                 <div v-if="merInfoForm.backImage" class="pictrue"><img :src="merInfoForm.backImage" /></div>
                 <div v-else class="upLoad">
@@ -95,7 +95,7 @@
                 </div>
                 <div class="from-tips">请上传小于500kb的图片(300*88 px)</div>
               </div>
-            </el-form-item>
+            </el-form-item> -->
             <el-form-item label="商户简介:" prop="intro">
               <el-input type="textarea" v-model.trim="merInfoForm.intro" maxlength="200" class="width100"></el-input>
             </el-form-item>

+ 1 - 1
mer_plat_admin/src/utils/get-page-title.js

@@ -10,7 +10,7 @@
 
 import defaultSettings from '@/settings';
 
-const title = window.localStorage.getItem('platSiteName') || 'CRMEB Admin';
+const title = window.localStorage.getItem('platSiteName') || '易点到管理平台';
 
 export default function getPageTitle(pageTitle) {
   if (pageTitle) {

+ 7 - 0
mer_uniapp/api/rider.js

@@ -40,6 +40,13 @@ export function riderExpressOrderList(data) {
 	return request.get('rider/express/list', data);
 }
 /**
+ * 订单详情
+ * 
+*/
+export function riderOrderInfo(orderNo) {
+  return request.get(`rider/order/info/${orderNo}`);
+}
+/**
  * 接单
  * 
 */

+ 1 - 1
mer_uniapp/manifest.json

@@ -257,7 +257,7 @@
         "async" : {
             "timeout" : 200000
         },
-        "title" : "加载中..."
+        "title" : "易点到"
     },
     "plus" : {
         "statusbar" : {

+ 5 - 3
mer_uniapp/pages/rider_index/components/footerPage/index.vue

@@ -42,7 +42,8 @@
 						role: '0'
 					},
 					{
-						pagePath: "/pages/rider_index/order/index?type=all&orderType=-1",
+						// pagePath: "/pages/rider_index/order/index?type=all&orderType=-1",
+						pagePath: "/pages/rider_index/order/index",
 						iconPath: require("../../static/ddh.png"),
 						selectedIconPath: require("../../static/ddl.png"),
 						text: "跑腿记录",
@@ -53,10 +54,11 @@
 						iconPath: require("../../static/shh.png"),
 						selectedIconPath: require("../../static/shl.png"),
 						text: "提现",
-						role: '2'
+						role: '2',
+						
 					}
 					// {
-					// 	pagePath: "/pages/admin/goods/index",
+					// 	pagePath: "/pages/rider_index/cashwithdrawal/index",
 					// 	iconPath: require("../../static/sph.png"),
 					// 	selectedIconPath: require("../../static/spl.png"),
 					// 	text: "商品",

+ 4 - 1
mer_uniapp/pages/rider_index/order/detail.vue

@@ -219,6 +219,9 @@
 		printReceipt
 	} from '@/api/work.js';
 	import {
+		riderOrderInfo
+	} from '@/api/rider.js';
+	import {
 		isMoney
 	} from '@/utils/validate.js'
 
@@ -339,7 +342,7 @@
 				this.moreShow = !this.moreShow
 			},
 			initOrderInfo(orderNo) {
-				employeeOrderInfo(orderNo).then(res => {
+				riderOrderInfo(orderNo).then(res => {
 					this.info = res.data
 					let refundSum = 0
 					let detailList = this.info.orderDetailList

+ 158 - 157
mer_uniapp/pages/rider_index/order/index.vue

@@ -318,8 +318,9 @@
 		},
 		computed: mapGetters(['isLogin']),
 		onLoad(options) {
-			this.state = options.type ? options.type : 'await';
-			this.searchListData.status = options.type ? options.type : 'await';
+			//await
+			this.state = options.type ? options.type : 'all';
+			this.searchListData.status = options.type ? options.type : 'all';
 			this.searchListData.type = options.orderType ? options.orderType : -1;
 		},
 		// created() {
@@ -589,183 +590,183 @@
 	@import '../style/admin_order.scss';
 </style>
 <style scoped lang="scss">
-	.map {
-		text-align: center;
-		padding-left: 36rpx;
-		position: relative;
-		@include main_color(theme);
+	// .map {
+	// 	text-align: center;
+	// 	padding-left: 36rpx;
+	// 	position: relative;
+	// 	@include main_color(theme);
 	
-		&::before {
-			content: '';
-			display: inline-block;
-			width: 2rpx;
-			height: 42rpx;
-			background-color: #DDDDDD;
-			position: absolute;
-			left: 0;
-			top: 18rpx;
-		}
+	// 	&::before {
+	// 		content: '';
+	// 		display: inline-block;
+	// 		width: 2rpx;
+	// 		height: 42rpx;
+	// 		background-color: #DDDDDD;
+	// 		position: absolute;
+	// 		left: 0;
+	// 		top: 18rpx;
+	// 	}
 	
-		.iconfont {
-			color: var(--view-theme);
-		}
+	// 	.iconfont {
+	// 		color: var(--view-theme);
+	// 	}
 	
-		.map_text {
-			color: var(--view-theme);
-		}
-	}
-	.order-item {
-		background-color: #fff;
-		border-radius: 23rpx;
-		padding: 19rpx 38rpx;
-	}
+	// 	.map_text {
+	// 		color: var(--view-theme);
+	// 	}
+	// }
+	// .order-item {
+	// 	background-color: #fff;
+	// 	border-radius: 23rpx;
+	// 	padding: 19rpx 38rpx;
+	// }
 
-	.order-top {
-		display: flex;
-		align-items: center;
-		justify-content: space-between;
-		padding: 17rpx;
-		border-bottom: 2rpx dashed #D6D7DC;
-	}
+	// .order-top {
+	// 	display: flex;
+	// 	align-items: center;
+	// 	justify-content: space-between;
+	// 	padding: 17rpx;
+	// 	border-bottom: 2rpx dashed #D6D7DC;
+	// }
 
-	.bold-size {
-		white-space: nowrap;
-		overflow: hidden;
-		text-overflow: ellipsis;
-		font-weight: 500;
-		font-size: 27rpx;
-		color: #141414;
-		z-index: 9999;
-	}
+	// .bold-size {
+	// 	white-space: nowrap;
+	// 	overflow: hidden;
+	// 	text-overflow: ellipsis;
+	// 	font-weight: 500;
+	// 	font-size: 27rpx;
+	// 	color: #141414;
+	// 	z-index: 9999;
+	// }
 
-	.onBold-size {
-		font-weight: 400;
-		font-size: 23rpx;
-		color: #999999;
-	}
+	// .onBold-size {
+	// 	font-weight: 400;
+	// 	font-size: 23rpx;
+	// 	color: #999999;
+	// }
 
-	.order-content {
-		padding: 10rpx 0 15rpx 0;
+	// .order-content {
+	// 	padding: 10rpx 0 15rpx 0;
 
-		.box-item {
-			display: flex;
-			align-items: center;
-			justify-content: space-between;
-			margin-bottom: 10rpx;
-		}
+	// 	.box-item {
+	// 		display: flex;
+	// 		align-items: center;
+	// 		justify-content: space-between;
+	// 		margin-bottom: 10rpx;
+	// 	}
 
-		.order-info {
-			width: 100%;
-			background: #F8F9FB;
-			padding: 19rpx 38rpx 45rpx 19rpx;
+	// 	.order-info {
+	// 		width: 100%;
+	// 		background: #F8F9FB;
+	// 		padding: 19rpx 38rpx 45rpx 19rpx;
 
-			.store-name {
-				font-weight: 600;
-				font-size: 27rpx;
-				color: #141414;
-			}
+	// 		.store-name {
+	// 			font-weight: 600;
+	// 			font-size: 27rpx;
+	// 			color: #141414;
+	// 		}
 
-			.scroll-container {
-				display: flex;
-				flex-wrap: nowrap;
-				margin: 20rpx 0;
-				overflow-x: auto;
-				/* 允许水平滚动 */
-				white-space: nowrap;
-				/* 防止项目换行 */
-				-webkit-overflow-scrolling: touch;
-				/* 在iOS上平滑滚动 */
+	// 		.scroll-container {
+	// 			display: flex;
+	// 			flex-wrap: nowrap;
+	// 			margin: 20rpx 0;
+	// 			overflow-x: auto;
+	// 			/* 允许水平滚动 */
+	// 			white-space: nowrap;
+	// 			/* 防止项目换行 */
+	// 			-webkit-overflow-scrolling: touch;
+	// 			/* 在iOS上平滑滚动 */
 
-				.item {
-					display: flex;
-					flex-direction: column;
-					align-items: center;
-					justify-content: center;
-					margin-right: 19rpx;
+	// 			.item {
+	// 				display: flex;
+	// 				flex-direction: column;
+	// 				align-items: center;
+	// 				justify-content: center;
+	// 				margin-right: 19rpx;
 
-					image {
-						width: 115rpx;
-						height: 115rpx;
-					}
+	// 				image {
+	// 					width: 115rpx;
+	// 					height: 115rpx;
+	// 				}
 
-					text {
-						font-weight: 400;
-						font-size: 21rpx;
-						color: #141414;
-						margin-top: 9rpx;
-					}
-				}
-			}
+	// 				text {
+	// 					font-weight: 400;
+	// 					font-size: 21rpx;
+	// 					color: #141414;
+	// 					margin-top: 9rpx;
+	// 				}
+	// 			}
+	// 		}
 
-			.container2 {
-				display: flex;
-				justify-content: space-between;
-				align-items: center;
-				font-weight: 500;
-				font-size: 21rpx;
-				color: #141414;
+	// 		.container2 {
+	// 			display: flex;
+	// 			justify-content: space-between;
+	// 			align-items: center;
+	// 			font-weight: 500;
+	// 			font-size: 21rpx;
+	// 			color: #141414;
 
-				view {
-					display: flex;
-					align-items: center;
-				}
+	// 			view {
+	// 				display: flex;
+	// 				align-items: center;
+	// 			}
 
-				.image2 {
-					width: 42rpx;
-					height: 42rpx;
-				}
-			}
-		}
-	}
+	// 			.image2 {
+	// 				width: 42rpx;
+	// 				height: 42rpx;
+	// 			}
+	// 		}
+	// 	}
+	// }
 
-	.order-dis {
-		font-weight: 400;
-		font-size: 23rpx;
-		color: #141414;
-	}
+	// .order-dis {
+	// 	font-weight: 400;
+	// 	font-size: 23rpx;
+	// 	color: #141414;
+	// }
 
-	.order-icon {
-		display: inline-block;
-		margin-left: 10rpx;
-		margin-right: 20rpx;
-		padding: 5rpx 10rpx;
-		font-weight: 400;
-		font-size: 23rpx;
-		color: #FFFFFF;
-		border-radius: 50%;
-		background-color: $bg-color-primary;
-	}
+	// .order-icon {
+	// 	display: inline-block;
+	// 	margin-left: 10rpx;
+	// 	margin-right: 20rpx;
+	// 	padding: 5rpx 10rpx;
+	// 	font-weight: 400;
+	// 	font-size: 23rpx;
+	// 	color: #FFFFFF;
+	// 	border-radius: 50%;
+	// 	background-color: $bg-color-primary;
+	// }
 
-	.order-bottom {
-		border-top: 2rpx dashed #D6D7DC;
+	// .order-bottom {
+	// 	border-top: 2rpx dashed #D6D7DC;
 
-		.bottom-but {
-			padding: 39rpx 67rpx;
+	// 	.bottom-but {
+	// 		padding: 39rpx 67rpx;
 
-			.sub {
-				width: 100%;
-				background-color: $bg-color-primary;
-				font-weight: 500;
-				font-size: 31rpx;
-				color: #FFFFFF;
-				padding: 17rpx 0;
-			}
-		}
-	}
+	// 		.sub {
+	// 			width: 100%;
+	// 			background-color: $bg-color-primary;
+	// 			font-weight: 500;
+	// 			font-size: 31rpx;
+	// 			color: #FFFFFF;
+	// 			padding: 17rpx 0;
+	// 		}
+	// 	}
+	// }
 
-	.icon-info {
-		width: 8rpx;
-		height: 31rpx;
-		background: $bg-color-primary;
-		margin-right: 15rpx;
-	}
+	// .icon-info {
+	// 	width: 8rpx;
+	// 	height: 31rpx;
+	// 	background: $bg-color-primary;
+	// 	margin-right: 15rpx;
+	// }
 
-	.line {
-		z-index: 1;
-		position: absolute;
-		left: 28rpx;
-		width: 1rpx;
-		height: 100%;
-		border-left: 1rpx dashed $bg-color-primary;
-	}
+	// .line {
+	// 	z-index: 1;
+	// 	position: absolute;
+	// 	left: 28rpx;
+	// 	width: 1rpx;
+	// 	height: 100%;
+	// 	border-left: 1rpx dashed $bg-color-primary;
+	// }
 </style>

+ 1 - 1
mer_uniapp/pages/trade_fair/trade_fair_user/index.vue

@@ -447,7 +447,7 @@
 					uni.navigateTo({
 						animationType: animationType.type,
 						animationDuration: animationType.duration,
-						url: '/pages/goods/order_details/index?orderNo=' + item.orderNo + "'&orderType=secondHand'
+						url: '/pages/goods/order_details/index?orderNo=' + item.orderNo + '&orderType=secondHand'
 					})
 					// #endif
 				}