Browse Source

上架管理

qzy 7 months ago
parent
commit
bad65d6da1

+ 1 - 1
common/http.js

@@ -3,7 +3,7 @@
 //const ip = 'http://hs-server.aseanbusiness.cn'; //线上
 // const ip = 'http://hs-server.tbgjhc.top:8018';
 const ngip = 'http://hs.tbgjhc.top:7010'
-const ip = 'http:///192.168.3.15:8080'; //线下
+const ip = 'http:///192.168.3.188:8080'; //线下
 
 /**
  * 封装的http请求

+ 12 - 2
pages.json

@@ -588,7 +588,8 @@
             }
 
         }
-		,{
+		,
+		{
             "path" : "pages/personal/commissionAgreement",
             "style" :
             {
@@ -596,7 +597,16 @@
                 "enablePullDownRefresh": false
             }
 
-        }
+        },
+		{
+		    "path" : "pages/market/order/order",
+		    "style" :
+		    {
+		        "navigationBarTitleText": "边民订单",
+		        "enablePullDownRefresh": false
+		    }
+		
+		}
     ],
 	"tabBar": {
 		"color": "#7A7E83",

+ 16 - 16
pages/face/faceRegister.nvue

@@ -11,7 +11,7 @@
 	export default {
 		data() {
 			return {
-				type:1,
+				type: 1,
 				cameraId: 0,
 				height: "500rpx",
 				width: "750rpx",
@@ -19,9 +19,9 @@
 			}
 		},
 		onLoad(options) {
-			this.type=options.type||1;
-			this.userId =uni.getStorageSync('info').id;
-			this.height = uni.getSystemInfoSync().screenHeight+'px';
+			this.type = options.type || 1;
+			this.userId = uni.getStorageSync('info').id;
+			this.height = uni.getSystemInfoSync().screenHeight + 'px';
 			this.$nextTick(() => {
 				//这里可以做打开摄像头等功能
 				this.openCamera(1)
@@ -47,7 +47,8 @@
 				});
 			},
 			registerFace(img) {
-				if(!img){
+				console.log(img);
+				if (!img) {
 					return;
 				}
 				const that = this;
@@ -65,18 +66,20 @@
 						let res = JSON.parse(resp.data);
 						if (res.code == 200) {
 							that.release();
-							uni.showToast({title: this.type==1?'录入成功':'验证成功'});
-							let user=uni.getStorageSync('info');
-							user.face=1;
-							uni.setStorageSync('info',user)
-							setTimeout(()=>{
+							uni.showToast({
+								title: this.type == 1 ? '录入成功' : '验证成功'
+							});
+							let user = uni.getStorageSync('info');
+							user.face = 1;
+							uni.setStorageSync('info', user)
+							setTimeout(() => {
 								uni.$emit('face', true);
 								uni.navigateBack();
 								uni.hideLoading();
-							},500)
+							}, 1000)
 						} else {
 							uni.showToast({
-								icon:'none',
+								icon: 'none',
 								title: res.msg
 							})
 							setTimeout(function() {
@@ -120,7 +123,6 @@
 						let r0 = (this.height * 1.0) / this.width;
 						let diff = 1000;
 						for (var i = 0; i < data.sizes.length; i++) {
-							console.log(data.sizes[i]);
 							//找出最合适的分辨率,宽高比例尽量接近组件的(摄像头宽高是反着呢)
 							let tmp = Math.abs(r0 - (data.sizes[i].width * 1.0) / data.sizes[bestHeight_index]
 								.width);
@@ -154,9 +156,7 @@
 							previewWidth: data.sizes[bestHeight_index].width,
 							previewHeight: data.sizes[bestHeight_index].height
 						}, function(data) {
-							setTimeout(function() {
-								that.takePicture();
-							}, 1000);
+							that.takePicture();
 						});
 					}, 500);
 				});

+ 4 - 8
pages/market/one/leader/order.vue

@@ -42,26 +42,22 @@
 				<view class="clear"></view>
 				<view class="op">
 					<view class="date">{{ item.createTime }}</view>
-					<template v-if="item.finishStatus == 1 && (item.upStatus == 1||item.upStatus == 3)">
+					<!-- <template v-if="item.finishStatus == 1 && (item.upStatus == 1||item.upStatus == 3)">
 						<view v-if="user.bindShop==2" class="an" style="color: blue;" @click.stop="resale(item)">上架
 						</view>
 						<view v-else class="an">请联系互助社绑定商铺
 						</view>
-					</template>
+					</template> -->
 					<template
 						v-if="item.peopleConfirmStatus == 1 && item.Sxb010Status == 1 && item.finishStatus == 0 && item.refundStatus == 0">
 						<view class="an" style="color: #f44336" @click.stop="orderRefund(item.id)">退款</view>
 					</template>
-					<template
-						v-if="item.peopleConfirmStatus == 1 && item.sxb010Status == 1 && item.finishStatus == 0 && item.refundStatus == 0">
-						<view class="an" style="color: #f44336" @click.stop="orderRefund(item.id)">退款</view>
-					</template>
 					<!-- 	<template v-if="item.resaleStatus == 1 && item.beingOrder == 0">
 						<view class="an" style="color: #f44336"  @click.stop="updateResalePrice(item.id)">修改转售价格</view>
 					</template> -->
-					<template v-if="item.resaleStatus == 0 && item.beingOrder == 0&& item.upStatus == 2">
+				<!-- 	<template v-if="item.resaleStatus == 0 && item.beingOrder == 0&& item.upStatus == 2">
 						<view class="an" style="color: #f44336" @click.stop="downOrder(item)">下架</view>
-					</template>
+					</template> -->
 				</view>
 			</view>
 			<view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>

+ 242 - 0
pages/market/order/order.vue

@@ -0,0 +1,242 @@
+<template>
+	<view>
+		<view class="tab">
+			<u-tabs :list="tab" @click="click" :lineHeight="5"></u-tabs>
+		</view>
+		<view class="goodsList">
+			<view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
+				<view class="title">{{ item.enterpriseName }}
+					<view class="state" v-if="item.finishStatus == 1 && item.upStatus == 1">
+						<text class="icon" style="color:#13ce66">&#xe830;</text>
+						<text>待上架</text>
+					</view>
+					<view class="state" v-if="item.finishStatus == 1 && item.upStatus == 2&&item.resaleStatus == 0">
+						<text class="icon" style="color:#13ce66">&#xe830;</text>
+						<text>已上架</text>
+					</view>
+					<view class="state" v-if="item.resaleStatus == 1&& item.upStatus == 2">
+						<text class="icon" style="color: #13ce66">&#xe830;</text>
+						<text>已转售</text>
+					</view>
+				</view>
+
+				<!-- <image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image> -->
+				<view class="con">
+					<view class="productName omit">{{ item.goodsNames }}</view>
+					<view class="desc omit">
+						<text>重量 {{ item.totalWeight }}{{ item.goodsUnit }}</text>
+						<text>{{ item.tradeAreaName }}</text>
+					</view>
+					<view class="price">¥ {{ item.totalPrice }}</view>
+				</view>
+				<view class="clear"></view>
+				<view class="op">
+					<view class="date">{{ item.createTime }}</view>
+					<template v-if="item.finishStatus == 1 && (item.upStatus == 1||item.upStatus == 3)">
+						<view v-if="user.bindShop==2" class="an" style="color: blue;" @click.stop="resale(item)">上架
+						</view>
+						<view v-else class="an">请联系互助社绑定商铺
+						</view>
+					</template>
+				
+					<template v-if="item.resaleStatus == 0 && item.beingOrder == 0&& item.upStatus == 2">
+						<view class="an" style="color: #f44336" @click.stop="downOrder(item)">下架</view>
+					</template>
+				</view>
+			</view>
+			<view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
+			<u-empty v-if="!loadMore && list.length == 0"></u-empty>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				user: {},
+				tab: [{
+						name: '全部',
+						peopleConfirmStatus: '', //边民确认状态
+						cooperEntrustStatus: '', //互助委托申报确认状态
+						applyConfirmStatus: '', //进口申报确认状态
+						finishStatus: '', //订单完成状态
+						resaleStatus: '' //订单转售状态
+					},
+					{
+						name: '待上架',
+						finishStatus: 1,
+						resaleStatus: 0,
+						upStatus: 1
+					},
+					{
+						name: '已上架',
+						finishStatus: 1,
+						resaleStatus: 0,
+						upStatus: 2
+					},
+					{
+						name: '已转售',
+						finishStatus: 1,
+						resaleStatus: 1,
+						upStatus: 2
+					}
+				],
+				param: {
+					pageNo: 1,
+					pageSize: 10
+				},
+				list: [],
+				loadMore: true,
+				id: '',
+				flag: '',
+			};
+		},
+		onLoad() {
+			this.user = this.getUser()
+			uni.$on('face', res => {
+				if (this.flag == 1) {
+					this.http.request({
+						url: '/level-one-server/app/TbOrder/confirmOrder',
+						data: {
+							orderId: this.id
+						},
+						success: resp => {
+							uni.showToast({
+								title: '订单确认成功'
+							});
+							this.refresh();
+						}
+					});
+				} else if (this.flag == 2) {
+					this.http.request({
+						url: '/level-one-server/app/TbOrder/applyOrder',
+						data: {
+							orderId: this.id
+						},
+						success: resp => {
+							uni.showToast({
+								title: '进口申报确认成功'
+							});
+							this.refresh();
+						}
+					});
+				}
+			})
+		},
+		onShow() {
+			this.getData();
+		},
+		methods: {
+			downOrder(item) {
+				uni.showModal({
+					title: '提示',
+					content: '确定下架?',
+					success: res => {
+						if (res.confirm) {
+							this.http.request({
+								url: '/level-one-server/app/TbOrder/down',
+								data: {
+									id: item.id
+								},
+								success: res => {
+									uni.showToast({
+										title: '提交成功'
+									});
+									item.upStatus = 1;
+								}
+							});
+						}
+					}
+				});
+			},
+			getData() {
+				this.http.request({
+					url: '/level-one-server/app/TbOrder/getList',
+					loading: 'false',
+					data: this.param,
+					success: res => {
+						this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
+						if (res.data.data) {
+							this.list = res.data.data;
+							console.log("---1---=" + this.list[0].finishStatus)
+							console.log("---2---=" + this.list[0].resaleStatus)
+						}
+					}
+				});
+			},
+			// 点击tab切换
+			click(e) {
+				console.log(e);
+				this.param.peopleConfirmStatus = e.peopleConfirmStatus;
+				this.param.cooperEntrustStatus = e.cooperEntrustStatus;
+				this.param.applyConfirmStatus = e.applyConfirmStatus;
+				this.param.finishStatus = e.finishStatus;
+				this.param.resaleStatus = e.resaleStatus;
+				this.param.upStatus = e.upStatus;
+				this.refresh();
+			},
+			detail(item) {
+				uni.navigateTo({
+					url: '/pages/market/one/leader/detail?id=' + item.id
+				});
+			},
+			resale(item) {
+				uni.navigateTo({
+					url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)
+				});
+			},
+			orderRefund(id) {
+				this.http.request({
+					url: '/level-one-server/app/TbOrder/orderRefund',
+					data: {
+						id: id
+					},
+					method: 'POST',
+					success: resp => {
+						uni.showToast({
+							title: '操作成功'
+						});
+						this.refresh();
+					}
+				});
+			},
+			updateResalePrice(id) {
+				uni.navigateTo({
+					url: '/pages/market/two/leader/updatePrice?id=' + id
+				});
+			},
+			// 刷新数据
+			refresh() {
+				this.loadMore = true;
+				this.param.pageNo = 1;
+				this.list = [];
+				this.getData();
+			}
+		},
+		//下拉刷新
+		onPullDownRefresh() {
+			setTimeout(() => {
+				this.refresh();
+				uni.stopPullDownRefresh();
+			}, 1000);
+		},
+		//上拉加载
+		onReachBottom() {
+			if (this.loadMore) {
+				this.param.pageNo++;
+				this.getData();
+			}
+		}
+	};
+</script>
+
+<style lang="scss">
+	page {
+		background-color: $pg;
+	}
+
+	.state {
+		margin-right: -70px;
+	}
+</style>

+ 1 - 1
pages/market/two/list.vue

@@ -17,7 +17,7 @@
 				</view>
 			</view>
 			<view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
-				<view class="title">{{ item.createName }}</view>
+				<view class="title">{{ item.leaderName }}</view>
 				<view class="check" @click.stop="selected(item)" v-if="user.userType == 3">
 					<text class="check icon" v-if="item.check" style="color: #4581fb">&#xe631;</text>
 					<text class="check icon" v-else>&#xe60c;</text>