From fc65b1d8dc534675fd43b7f63ed39f6c9108ddf6 Mon Sep 17 00:00:00 2001 From: whycq <123456> Date: 星期四, 10 十一月 2022 13:47:22 +0800 Subject: [PATCH] # --- pages/basics/piking.vue | 75 +++++++++++++++++++++++++++++++++---- 1 files changed, 67 insertions(+), 8 deletions(-) diff --git a/pages/basics/piking.vue b/pages/basics/piking.vue index 5e37e47..674e902 100644 --- a/pages/basics/piking.vue +++ b/pages/basics/piking.vue @@ -1,7 +1,7 @@ <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> @@ -12,7 +12,7 @@ <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"> @@ -21,7 +21,7 @@ </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> @@ -57,12 +57,11 @@ <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> - <y-pop> - </y-pop> + <view> <!-- 淇敼鏁伴噺 --> <uni-popup ref="revise" @change="change"> @@ -97,7 +96,7 @@ data() { return { commonUrl:null, - matList:[{}], + matList:[], staNoList:[], barcode: '', staNo:'', @@ -123,6 +122,66 @@ // 鑾峰彇url 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]) + } + } 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'}) + } + } + + }) + }, + // 杞叏鏉垮嚭搴� + 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'}) + that.matList = [] + that.barcode = '' + } 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 @@ -262,7 +321,7 @@ }, resst() { this.matList = [] - this.staNo = '' + this.barcode = '' }, adjust() { let that = this -- Gitblit v1.9.1