1
huangxiaoqiang
8 天以前 7195016afc472307e4db0b415e45c9d4275bdb02
项目代码/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 {