فهرست منبع

一级市场边民进口确认

linbl 1 سال پیش
والد
کامیت
ded420fba7
2فایلهای تغییر یافته به همراه43 افزوده شده و 13 حذف شده
  1. 35 5
      pages/market/one/leader/order.vue
  2. 8 8
      pages/personal/personal.vue

+ 35 - 5
pages/market/one/leader/order.vue

@@ -39,7 +39,10 @@
 					<template v-if="item.peopleConfirmStatus == 0">
 						<view class="an" style="color: #f44336"  @click.stop="confirmOrder(item.id)">边民确认</view>
 					</template>
-					<template v-if="item.peopleConfirmStatus == 1 && item.apply == 1 && item.resaleStatus == 0">
+					<template v-if="item.peopleConfirmStatus == 1 && item.applyConfirmStatus == 0">
+						<view class="an" style="color: #f44336"  @click.stop="applyOrder(item.id)">进口申报确认</view>
+					</template>
+					<template v-if="item.peopleConfirmStatus == 1 && item.applyConfirmStatus == 1 && item.apply == 1 && item.resaleStatus == 0">
 						<view class="an" style="color: #f44336"  @click.stop="resale(item)">订单转售</view>
 					</template>
 					<!-- <template v-if="item.peopleConfirmStatus == 0">
@@ -64,13 +67,23 @@ export default {
 				{
 					name: '全部',
 					peopleConfirmStatus: '',	//边民确认状态
+					applyConfirmStatus: '',		//进口申报确认状态
 					apply: '',					//订单申报状态
 					finishStatus: '',			//订单完成状态
 					resaleStatus: ''			//订单转售状态
 				},
 				{
-					name: '确认',
+					name: '边民确认',
 					peopleConfirmStatus: 0,
+					applyConfirmStatus: 0,
+					apply: 0,
+					finishStatus: 0,
+					resaleStatus: 0
+				},
+				{
+					name: '申报确认',
+					peopleConfirmStatus: 1,
+					applyConfirmStatus: 0,
 					apply: 0,
 					finishStatus: 0,
 					resaleStatus: 0
@@ -78,6 +91,7 @@ export default {
 				{
 					name: '申报中',
 					peopleConfirmStatus: 1,
+					applyConfirmStatus: 1,
 					apply: 0,
 					finishStatus: 0,
 					resaleStatus: 0
@@ -85,6 +99,7 @@ export default {
 				{
 					name: '已完成',
 					peopleConfirmStatus: 1,
+					applyConfirmStatus: 1,
 					apply: 1,
 					finishStatus: 1,
 					resaleStatus: 0
@@ -92,6 +107,7 @@ export default {
 				{
 					name: '已转售',
 					peopleConfirmStatus: 1,
+					applyConfirmStatus: 1,
 					apply: 1,
 					finishStatus: 1,
 					resaleStatus: 1
@@ -111,11 +127,13 @@ export default {
 			user:this.getUser(),
 			list: [],
 			loadMore: true,
-			user: this.getUser()
+			user: this.getUser(),
+			confirmType: 1,//边民确认类型[1=刷脸,2=指纹]
 		};
 	},
 	onLoad() {
 		this.getData();
+		console.log("111111",this.list)
 	},
 	methods: {
 		getData() {
@@ -139,7 +157,8 @@ export default {
 		// 点击tab切换
 		click(e) {
 			console.log(e);
-			this.param.peopleConfirmStatus = e.appeopleConfirmStatusply;
+			this.param.peopleConfirmStatus = e.peopleConfirmStatus;
+			this.param.applyConfirmStatus = e.applyConfirmStatus;
 			this.param.apply = e.apply;
 			this.param.finishStatus = e.finishStatus;
 			this.param.resaleStatus = e.resaleStatus;
@@ -161,7 +180,18 @@ export default {
 		//边民确认订单
 		confirmOrder(id) {
 			this.http.request({
-				url: '/level-one-server/app/TbPeople/confirmOrder',
+				url: '/level-one-server/app/TbOrder/confirmOrder',
+				data: { orderId: id , confirmType: this.confirmType},
+				success: resp => {
+					uni.showToast({ title: '操作成功' });
+					this.refresh();
+				}
+			});
+		},
+		//边民进口申报确认
+		applyOrder(id) {
+			this.http.request({
+				url: '/level-one-server/app/TbOrder/applyOrder',
 				data: { orderId: id },
 				success: resp => {
 					uni.showToast({ title: '操作成功' });

+ 8 - 8
pages/personal/personal.vue

@@ -33,7 +33,7 @@
 				<view class="clear"></view>
 			</view>
 			<!--边民菜单-->
-			<view class="menu" v-if="user.userType == 1">
+			<!-- <view class="menu" v-if="user.userType == 1">
 				<view class="msn" @click="go('/pages/market/one/leader/order')">
 					<view class="out">
 						<view class="int">
@@ -42,17 +42,17 @@
 						</view>
 					</view>
 				</view>
-			</view>
-			<!--组长菜单-->
-			<view class="menu" v-if="user.userType == 2">
-				<view class="msn" @click="go('/pages/market/one/leader/cart')">
+			</view> -->
+			<!--边民菜单与组长菜单-->
+			<view class="menu" v-if="user.userType == 1 || user.userType == 2">
+				<!-- <view class="msn" @click="go('/pages/market/one/leader/cart')">
 					<view class="out">
 						<view class="int">
 							<view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41">&#xe604;</view>
 							<view class="tit">购物车</view>
 						</view>
 					</view>
-				</view>
+				</view> -->
 				<view class="msn" @click="go('/pages/market/one/leader/order')">
 					<view class="out">
 						<view class="int">
@@ -80,14 +80,14 @@
 						</view>
 					</view>
 				</view>
-				<view class="msn" @click="go('/pages/market/two/purchaser/buy/list')">
+				<!-- <view class="msn" @click="go('/pages/market/two/purchaser/buy/list')">
 					<view class="out">
 						<view class="int">
 							<view class="icon ioc" style="background-color: #e1f6e9; color: #47cf74">&#xe634;</view>
 							<view class="tit">采购需求</view>
 						</view>
 					</view>
-				</view>
+				</view> -->
 				<view class="msn" @click="go('/pages/market/two/purchaser/address/list')">
 					<view class="out">
 						<view class="int">