|  |  |  | 
|---|
|  |  |  | <view>类型:{{orderDetl.brand}}</view> | 
|---|
|  |  |  | <view>调拨总量:{{orderDetl.anfme}}</view> | 
|---|
|  |  |  | <view>库存数量:{{orderDetl.stock}}</view> | 
|---|
|  |  |  | <view>已完成数量:{{orderDetl.qty}}</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> | 
|---|
|  |  |  | 
|---|
|  |  |  | <!-- 标题 --> | 
|---|
|  |  |  | <view class="title">入库数量</view> | 
|---|
|  |  |  | <view class="popup-item"> | 
|---|
|  |  |  | <uni-number-box :value="count" :step='1' :max="9999999" color="#747474" @change="changeValue" /> | 
|---|
|  |  |  | <uni-number-box :value="count" :step='0.01' :max="9999999" color="#747474" @change="changeValue" /> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="btn"> | 
|---|
|  |  |  | <view class="btn-left" @click="addClose">取消</view> | 
|---|
|  |  |  | 
|---|
|  |  |  | this.data.brand = '' | 
|---|
|  |  |  | this.getOrderDetlList(this.searchValue,10) | 
|---|
|  |  |  | this.$refs.filter.close() | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | goToLocDetl(item) { | 
|---|
|  |  |  | let _this = this | 
|---|
|  |  |  | uni.navigateTo({ | 
|---|
|  |  |  | url: './bcpDbList', | 
|---|
|  |  |  | success(res) { | 
|---|
|  |  |  | res.eventChannel.emit('item', { | 
|---|
|  |  |  | item: item | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | events: { | 
|---|
|  |  |  | acceptDataFromOpenedPage: function(data) { | 
|---|
|  |  |  | _this.getOrderDetlList(this.searchValue1,10) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|