|  |  |  | 
|---|
|  |  |  | <!-- 标题 --> | 
|---|
|  |  |  | <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> | 
|---|
|  |  |  | 
|---|
|  |  |  | onLoad() { | 
|---|
|  |  |  | this.baseUrl = uni.getStorageSync('baseUrl'); | 
|---|
|  |  |  | this.token = uni.getStorageSync('token'); | 
|---|
|  |  |  | this.searchValue = uni.getStorageSync('bcpThreeCode'); | 
|---|
|  |  |  | // this.searchValue = uni.getStorageSync('bcpThreeCode'); | 
|---|
|  |  |  | this.searchValue = '' | 
|---|
|  |  |  | this.getOrderDetlList(this.searchValue,10) | 
|---|
|  |  |  | console.log("onLoad"); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | onShow() { | 
|---|
|  |  |  | console.log(uni.getStorageSync('pakinOrderCar')); | 
|---|
|  |  |  | this.searchValue = '' | 
|---|
|  |  |  | this.getOrderDetlList(this.searchValue,10) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | onHide() { | 
|---|
|  |  |  | uni.setStorageSync('pakinOrderCar', this.orderCarList); | 
|---|
|  |  |  | 
|---|
|  |  |  | return | 
|---|
|  |  |  | } | 
|---|
|  |  |  | uni.navigateTo({ | 
|---|
|  |  |  | url: '../order/orderCar', | 
|---|
|  |  |  | url: './orderCar', | 
|---|
|  |  |  | success(res) { | 
|---|
|  |  |  | res.eventChannel.emit('item', { | 
|---|
|  |  |  | item: _this.orderCarList | 
|---|