#
whycq
2024-04-11 35a6571ff25e5da94784d228d6bb73df768013d7
pages/phyz/orderOut/orderOutSelect.vue
@@ -20,7 +20,7 @@
            <view>订单数量:{{orderDetl.anfme}}</view>
            <view>已出数量:{{orderDetl.qty}}</view>
         </view>
         <view class="list-right" @click="addItem(index)">
         <view class="list-right" @click="goToLocDetl(orderDetl)">
            <uni-icons type="right" size="25"  color="#fff"></uni-icons>
         </view>
      </view>
@@ -35,7 +35,7 @@
            主单号
         </view>
         <uni-search-bar v-model="searchValue2" style="width: 100%;"
            maxlength="500" ancel="cancel" @confirm="searchValueInput2()" @clear="clear" placeholder="输入 / 扫描 订单号">
            maxlength="500" ancel="cancel" @confirm="searchValueInput2()" @clear="clear2" placeholder="输入 / 扫描 订单号">
         </uni-search-bar>
      </view>
   </view>
@@ -77,7 +77,7 @@
            
            _this.data.limit = limit
            uni.request({
               url: `${_this.baseUrl}/orderDetl/pakout/list/authV2`,
               url: `${_this.baseUrl}/orderDetl/pakout/list/authV3`,
               header: {'token': uni.getStorageSync('token')},
               data: _this.data,
               method: 'GET',
@@ -125,6 +125,26 @@
            }
            
         },
         clear2() {
            this.searchValue2 = ''
            this.getOrderDetlList(this.searchValue1,'',999999)
         },
         goToLocDetl(item) {
            let _this = this
            uni.navigateTo({
               url: './orderList',
               success(res) {
                  res.eventChannel.emit('item', {
                     item: item
                  })
               },
               events: {
                  acceptDataFromOpenedPage: function(data) {
                     console.log(data);
                  }
               }
            })
         }
         
      }
   }