| | |
| | | <view>编号:{{orderDetl.matnr}}</view> |
| | | <view>名称:{{orderDetl.maktx}}</view> |
| | | <view>订单数量:{{orderDetl.anfme}}</view> |
| | | <view>库存数量:{{orderDetl.stock}}</view> |
| | | <view>已出数量:{{orderDetl.qty}}</view> |
| | | </view> |
| | | <view class="list-right" @click="goToLocDetl(orderDetl)"> |
| | |
| | | |
| | | <view class="buttom"> |
| | | <view style="width: 150rpx;text-align: center;padding-left: 12rpx;"> |
| | | 主单号 |
| | | 名称 |
| | | </view> |
| | | <uni-search-bar v-model="searchValue2" style="width: 100%;" |
| | | maxlength="500" ancel="cancel" @confirm="searchValueInput2()" @clear="clear2" placeholder="输入 / 扫描 订单号"> |
| | |
| | | this.getOrderDetlList(this.searchValue1,this.searchValue2,30) |
| | | }, |
| | | methods: { |
| | | getOrderDetlList(threeCode,orderNo,limit) { |
| | | console.log(orderNo); |
| | | getOrderDetlList(threeCode,maktx,limit) { |
| | | uni.showLoading({}) |
| | | let _this = this |
| | | _this.mask = true |
| | | _this.data.three_code = threeCode |
| | | _this.data.order_no = orderNo |
| | | _this.data.maktx = maktx |
| | | _this.data.limit = limit |
| | | uni.request({ |
| | | url: `${_this.baseUrl}/orderDetl/pakout/list/authV3`, |
| | |
| | | data: _this.data, |
| | | method: 'GET', |
| | | success(res) { |
| | | uni.hideLoading({}) |
| | | res = res.data |
| | | if (res.code === 200) { |
| | | for (let k of res.data.records) { |