| | |
| | | <template> |
| | | <view> |
| | | <scroll-view scroll-y> |
| | | <view class="pak-seach-box"> |
| | | <!-- <view class="pak-seach-box"> |
| | | <view class="box-top"> |
| | | <view class="color-block-blue"></view> |
| | | <text class="title">选择站台</text> |
| | |
| | | <uni-combox @input="getCheckDetl" emptyTips="暂无数据" :candidates="staNoList" v-model="staNo" placeholder="请选择"></uni-combox> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </view> --> |
| | | |
| | | <view class="square-2"> |
| | | <view class="square-title"> |
| | |
| | | </view> |
| | | <view class="square-content"> |
| | | <view class="content-input"> |
| | | <input v-model="barcode" type="text" placeholder="扫码 / 输入" maxlength="8"placeholder-style="line-height: 85rpx;"> |
| | | <input v-model="barcode" @input="search" type="text" placeholder="扫码 / 输入" maxlength="8"placeholder-style="line-height: 85rpx;"> |
| | | <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode" ></uni-icons> |
| | | </view> |
| | | </view> |
| | |
| | | <button class="cu-btn lg" @click="resst()">重置</button> |
| | | </view> |
| | | <view> |
| | | <button class="cu-btn lg pakin-btn bg-blue" @click="adjust()">转全板出库</button> |
| | | <button class="cu-btn lg pakin-btn bg-blue" @click="pickingToFull()">转全板出库</button> |
| | | </view> |
| | | </view> |
| | | </scroll-view> |
| | |
| | | data() { |
| | | return { |
| | | commonUrl:null, |
| | | matList:[{}], |
| | | matList:[], |
| | | staNoList:[], |
| | | barcode: '', |
| | | staNo:'', |
| | |
| | | getUrl() { |
| | | this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl |
| | | }, |
| | | // 根据托盘码搜索 |
| | | search() { |
| | | let that = this |
| | | uni.request({ |
| | | url: that.commonUrl + '/mobile/piking/auth', |
| | | header: { |
| | | 'token':uni.getStorageSync('token') |
| | | }, |
| | | data: {barcode: that.barcode}, |
| | | method:'GET', |
| | | success(result) { |
| | | let res = result.data |
| | | if(res.code === 200){ |
| | | for(var i = 0; i < res.data.length;i++){ |
| | | that.matList.push(res.data[i]) |
| | | } |
| | | } |
| | | } |
| | | |
| | | }) |
| | | }, |
| | | // 转全板出库 |
| | | pickingToFull() { |
| | | console.log(this.barcode); |
| | | let that = this |
| | | uni.request({ |
| | | url: that.commonUrl + '/mobile/piking/to/full', |
| | | header: { |
| | | 'token':uni.getStorageSync('token') |
| | | }, |
| | | data: {barcode: that.barcode}, |
| | | method: 'GET', |
| | | success(result){ |
| | | let res = result.data |
| | | if (res.code === 200) { |
| | | uni.showToast({title: res.msg, icon: "none", position: 'top'}) |
| | | } else if (res.code == 403) { |
| | | uni.showToast({title: res.msg, icon: "none", position: 'top'}) |
| | | setTimeout(() => { |
| | | uni.reLaunch({ |
| | | url: '../login/login' |
| | | }); |
| | | }, 1000); |
| | | } else { |
| | | uni.showToast({title: res.msg, icon: "none",position: 'top'}) |
| | | } |
| | | } |
| | | }) |
| | | }, |
| | | getOutBound() { // 获取出库口 |
| | | let that = this |
| | | uni.request({ |