瀏覽代碼

订单交易和互助委托确认

李书文 1 年之前
父節點
當前提交
5f569dfe7c
共有 7 個文件被更改,包括 408 次插入33 次删除
  1. 1 1
      App.vue
  2. 31 20
      pages.json
  3. 54 2
      pages/index/index.vue
  4. 209 0
      pages/market/one/leader/cooperation.vue
  5. 111 0
      pages/market/one/leader/handle.vue
  6. 1 9
      pages/market/one/leader/order.vue
  7. 1 1
      pages/market/two/list.vue

+ 1 - 1
App.vue

@@ -39,7 +39,7 @@ button::after {
 /**挂载iconfont字体图标*/
 @font-face {
 	font-family: 'iconfont';
-	src: url('https://at.alicdn.com/t/c/font_4191999_pn5jkrx05l.ttf?t=1692117075907') format('truetype');
+	src: url('https://at.alicdn.com/t/c/font_4191999_e5zep4g7w2a.ttf?t=1693296694547') format('truetype');
 	/* src: url('~@/static/font/iconfont.ttf') format('truetype'); */
 }
 .icon {

+ 31 - 20
pages.json

@@ -469,26 +469,37 @@
 				}
 			}
 
+		}, {
+			"path": "pages/market/one/confirm/people",
+			"style": {
+				"navigationBarTitleText": "交易确认",
+				"enablePullDownRefresh": false
+			}
+
+		}, {
+			"path": "pages/market/one/confirm/apply",
+			"style": {
+				"navigationBarTitleText": "进口确认",
+				"enablePullDownRefresh": false
+			}
+
+		},
+		{
+			"path": "pages/market/one/leader/cooperation",
+			"style": {
+				"navigationBarTitleText": "互助委托",
+				"enablePullDownRefresh": false
+			}
+
+		}, {
+			"path": "pages/market/one/leader/handle",
+			"style": {
+				"navigationBarTitleText": "订单确认",
+				"enablePullDownRefresh": false
+			}
+
 		}
-	    ,{
-            "path" : "pages/market/one/confirm/people",
-            "style" :
-            {
-                "navigationBarTitleText": "交易确认",
-                "enablePullDownRefresh": false
-            }
-
-        }
-        ,{
-            "path" : "pages/market/one/confirm/apply",
-            "style" :
-            {
-                "navigationBarTitleText": "进口确认",
-                "enablePullDownRefresh": false
-            }
-
-        }
-    ],
+	],
 	"tabBar": {
 		"color": "#7A7E83",
 		"selectedColor": "#4581fb",
@@ -519,4 +530,4 @@
 		"navigationBarTitleText": "边民互市贸易",
 		"navigationBarBackgroundColor": "#4581fb"
 	}
-}
+}

+ 54 - 2
pages/index/index.vue

@@ -52,6 +52,26 @@
 				</view>
 			</view>
 		</view>
+		<u-popup :show="show" @close="close()" round="15" mode="center" :closeOnClickOverlay="false" :customStyle="{ width: '90%' }">
+			<view class="ppopup">
+				<u-divider text="交易订单提醒" textSize="16"></u-divider>
+				<view class="contents">
+					<view class="item omit">
+						<text class="label">商品名称:</text>
+						<text class="desc">河虾(活体)(沼虾属Macrobrachium)</text>
+					</view>
+					<view class="item omit">
+						<text class="label">数量:</text>
+						<text class="desc">河虾(活体)(沼虾属Macrobrachium)</text>
+					</view>
+					<view class="item omit">
+						<text class="label">价格:</text>
+						<text class="desc">¥ 1000</text>
+					</view>
+				</view>
+				<button class="btn" @click="confirm()">去处理</button>
+			</view>
+		</u-popup>
 	</view>
 </template>
 
@@ -65,7 +85,9 @@ export default {
 			noticeList: ['边民互市贸易APP上线了', '关于边民互市贸易开通注意事项'],
 			roleMenu: [],
 			menuList: [],
-			count: 0
+			count: 0,
+			show: true,
+			order: {}
 		};
 	},
 	onLoad() {
@@ -78,6 +100,23 @@ export default {
 		this.getRead();
 	},
 	methods: {
+		//获取待处理的订单弹出
+		getOrderConfirm() {
+			this.http.request({
+				url: '/level-two-server/app/TbOrders/xxxxx',
+				loading: 'false',
+				success: res => {
+					if (res.data.data) {
+						this.order=res.data.data;
+						this.show = true;
+					}
+				}
+			});
+		},
+		confirm() {
+			uni.navigateTo({ url: '/pages/market/one/leader/handle?orderId=' + this.order.id });
+			this.show = false;
+		},
 		getRead() {
 			this.http.request({
 				url: '/sp-admin/app/TbMessage/getRead',
@@ -114,7 +153,7 @@ export default {
 							}
 						});
 					});
-					this.menuList.sort((a,b)=>a.sort-b.sort);
+					this.menuList.sort((a, b) => a.sort - b.sort);
 				}
 			});
 		},
@@ -207,4 +246,17 @@ page {
 		margin-top: 15px;
 	}
 }
+.ppopup {
+	.item {
+		padding: 5px 0px 5px 0px;
+		color: $font-c;
+		.label {
+			width: 70px;
+			float: left;
+			text-align: left;
+			padding-right: 10px;
+			font-weight: bold;
+		}
+	}
+}
 </style>

+ 209 - 0
pages/market/one/leader/cooperation.vue

@@ -0,0 +1,209 @@
+<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.peopleConfirmStatus == 0">
+						<text class="icon">&#xe830;</text>
+						<text>未确认</text>
+					</view>
+					<view class="state" v-if="item.peopleConfirmStatus == 1 && item.apply == 0">
+						<text class="icon" style="color: #13ce66">&#xe830;</text>
+						<text>已确认</text>
+					</view>
+					<view class="state" v-if="item.resaleStatus == 1">
+						<text class="icon" style="color: #13ce66">&#xe830;</text>
+						<text>已转售</text>
+					</view>
+					<view class="state" v-if="item.finishStatus == 3">
+						<text class="icon" style="color: #f44336">&#xe622;</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 }}</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.peopleConfirmStatus == 0">
+						<view class="an" style="color: #f44336" @click.stop="confirmOrder(item.id)">边民确认</view>
+					</template>
+					<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">
+						<view class="an" style="color: #f44336" v-if="user.userType == 2" @click.stop="confirm(item.id)">取消订单</view>
+					</template>
+					<template v-if="item.finishStatus == 3">
+						<view class="an" style="color: #f44336" v-if="user.userType == 2" @click.stop="del(item.id)">删除订单</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 {
+			tab: [
+				{
+					name: '全部',
+					peopleConfirmStatus: '', //边民确认状态
+					applyConfirmStatus: '', //进口申报确认状态
+					apply: '', //订单申报状态
+					finishStatus: '', //订单完成状态
+					resaleStatus: '' //订单转售状态
+				},
+				{
+					name: '订单确认',
+					peopleConfirmStatus: 0,
+					applyConfirmStatus: 0,
+					apply: 0,
+					finishStatus: 0,
+					resaleStatus: 0
+				}
+			],
+			param: {
+				pageNo: 1,
+				pageSize: 10
+			},
+			user: this.getUser(),
+			list: [],
+			loadMore: true,
+			confirmType: 1, //边民确认类型[1=刷脸,2=指纹]
+			id: '',
+			flag: ''
+		};
+	},
+	onLoad() {
+		this.getData();
+	},
+	methods: {
+		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.push(...res.data.data);
+					}
+				}
+			});
+		},
+		// 点击tab切换
+		click(e) {
+			console.log(e);
+			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;
+			this.refresh();
+		},
+		detail(item) {
+			uni.navigateTo({ url: '/pages/market/one/leader/detail?id=' + item.id });
+		},
+		// 刷新数据
+		refresh() {
+			this.loadMore = true;
+			this.param.pageNo = 1;
+			this.list = [];
+			this.getData();
+		},
+		//边民确认订单
+		confirmOrder(id) {
+			this.id = id;
+			this.flag = 1;
+			uni.navigateTo({ url: '/pages/authentication/face' });
+		},
+		//边民进口申报确认
+		applyOrder(id) {
+			this.id = id;
+			this.flag = 2;
+			uni.navigateTo({ url: '/pages/authentication/face' });
+		},
+		// 取消订单
+		confirm(id) {
+			uni.showModal({
+				title: '提示',
+				content: '是否确认取消订单?',
+				success: res => {
+					if (res.confirm) {
+						this.http.request({
+							url: '/level-one-server/app/TbOrder/cancelOrder',
+							data: { orderId: id },
+							success: resp => {
+								uni.showToast({ title: '操作成功' });
+								this.refresh();
+							}
+						});
+					}
+				}
+			});
+		},
+		// 删除订单
+		del(id) {
+			uni.showModal({
+				title: '提示',
+				content: '确认删除该订单?',
+				success: res => {
+					if (res.confirm) {
+						this.http.request({
+							url: '/level-one-server/app/TbOrder/delete',
+							data: { id: id },
+							success: resp => {
+								uni.showToast({ title: '操作成功' });
+								this.refresh();
+							}
+						});
+					}
+				}
+			});
+		}
+	},
+	//下拉刷新
+	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>

+ 111 - 0
pages/market/one/leader/handle.vue

@@ -0,0 +1,111 @@
+<template>
+	<view>
+		<view class="cmain">
+			<view class="box order_detail" style="padding: 13px">
+				<u-steps :current="current">
+					<u-steps-item title="订单确认"></u-steps-item>
+					<u-steps-item title="互助委托确认"></u-steps-item>
+					<u-steps-item title="进口申报确"></u-steps-item>
+				</u-steps>
+			</view>
+			<view class="box order_detail">
+				<view class="item ctt">互助委托书</view>
+				<view class="item desc">
+					边民 杨镇生(身份证号:4509231***12)委托代理边民互市(进口/入境)商品交易(进口/入境)商品交易信息如下:
+				</view>
+				<view class="item">
+					<text class="label">订单编号</text>
+					<text class="desc omit">45245741587</text>
+				</view>
+				<view class="item">
+					<text class="label">商品名称</text>
+					<text class="desc">河虾(活体)(沼虾属Macrobrachium)</text>
+				</view>
+				<view class="item">
+					<text class="label">商品金额</text>
+					<text class="desc">¥ 1000</text>
+				</view>
+				<view class="item">
+					<text class="label">车牌号</text>
+					<text class="desc">桂A66709</text>
+				</view>
+			</view>
+		</view>
+		<view class="mfooter">
+			<view class="flex">
+				<view class="f">
+					<button class="btn" @click="ok()">确定</button>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+export default {
+	data() {
+		return {
+			current: 1,
+			item: {}
+		};
+	},
+	onLoad(e) {
+		if (e.orderId) {
+			this.http.request({
+				url: '/level-two-server/app/TbOrders/getDetailById',
+				method: 'POST',
+				data: { ids: this.orderIds },
+				success: res => {
+					this.list = res.data.data;
+				}
+			});
+		}
+	},
+	methods: {
+		ok() {
+			//根据不同的步骤提交不同的url或者状态参数
+			if (this.current == 0) {
+				this.item.state = 0;
+			}
+			uni.showModal({
+				title: '提示',
+				content: '我已核对信息无误',
+				success: res => {
+					if (res.confirm) {
+						this.http.request({
+							url: '/level-two-server/app/TbOrders/purchaserBuy',
+							method: 'POST',
+							data: { id: this.item.id },
+							success: res => {
+								//根据返回的状态进入那个步骤
+								if (res.xxx == 1) {
+									this.current = 1;
+									uni.setNavigationBarTitle({
+										title:'互助委托确认'
+									})
+								}
+								if (res.xxx == 2) {
+									this.current = 2;
+									uni.setNavigationBarTitle({
+										title:'进口申报确认'
+									})
+								}
+							}
+						});
+					}
+				}
+			});
+		}
+	}
+};
+</script>
+
+<style lang="scss">
+page {
+	background-color: $pg;
+}
+.ctt{
+	text-align: center;
+	font-weight: bold;
+}
+</style>

+ 1 - 9
pages/market/one/leader/order.vue

@@ -73,7 +73,7 @@ export default {
 					resaleStatus: ''			//订单转售状态
 				},
 				{
-					name: '边民确认',
+					name: '订单确认',
 					peopleConfirmStatus: 0,
 					applyConfirmStatus: 0,
 					apply: 0,
@@ -81,14 +81,6 @@ export default {
 					resaleStatus: 0
 				},
 				{
-					name: '申报确认',
-					peopleConfirmStatus: 1,
-					applyConfirmStatus: 0,
-					apply: 0,
-					finishStatus: 0,
-					resaleStatus: 0
-				},
-				{
 					name: '申报中',
 					peopleConfirmStatus: 1,
 					applyConfirmStatus: 1,

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

@@ -1,7 +1,7 @@
 <template>
 	<view>
 		<view class="search">
-			<u-search placeholder="搜索商品名称" v-model="param.goodsName" bgColor="white" @search="refresh()" :animation="true" actionText="取消" @clear="refresh()"></u-search>
+			<u-search placeholder="搜索商品或车牌号" v-model="param.goodsName" bgColor="white" @search="refresh()" :animation="true" actionText="取消" @clear="refresh()"></u-search>
 			<view class="clear"></view>
 		</view>
 		<view class="goodsList">