From 7195016afc472307e4db0b415e45c9d4275bdb02 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期四, 30 十月 2025 17:27:32 +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