From 85d9ca4ec972ce4d020db046d930e8991709ae2d Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期一, 03 十一月 2025 17:14:49 +0800
Subject: [PATCH] 1

---
 项目代码/PDA/pages/task/Outbound.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/task/Outbound.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/task/Outbound.vue"
index 2c70164..43c2595 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/task/Outbound.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/task/Outbound.vue"
@@ -7,7 +7,7 @@
 		</u-sticky>
 		<uni-list :border="true">
 			<uni-list-item direction="column" clickable
-				v-for="item in allReceivingOrders" :key="item.orderNo">
+				v-for="item in allReceivingOrders" :key="item.id">
 				<template v-slot:body>
 					<uni-group margin-top="20">
 						<view class="flex-row">
@@ -75,13 +75,14 @@
 			},
 			getData() {
 				var postData = {
-					orderNo: this.searchValue,
+					materielCode: this.searchValue,
 					pageNo: this.pageNo
 				}
+				this.allReceivingOrders=[];
 				this.$u.post('/api/StockInfo/GetStockView', postData).then((res) => {
 					if (res.status) {
 						if (this.searchValue == '') {
-							this.allReceivingOrders = this.allReceivingOrders.concat(res.data);
+							this.allReceivingOrders = res.data;
 							if (this.allReceivingOrders.length > 3) {
 								this.loadVisible = true;
 							} else {

--
Gitblit v1.9.3