From 463d308a3e0fd5e557aa7ce585be0d67f5fa1e2e Mon Sep 17 00:00:00 2001 From: whycq <whycq> Date: 星期二, 21 六月 2022 08:23:05 +0800 Subject: [PATCH] # --- pages/basics/pakin.vue | 153 ++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 109 insertions(+), 44 deletions(-) diff --git a/pages/basics/pakin.vue b/pages/basics/pakin.vue index d0cc4bb..2b421c9 100644 --- a/pages/basics/pakin.vue +++ b/pages/basics/pakin.vue @@ -8,24 +8,13 @@ </view> <view class="square-content"> <view class="content-input"> - <input v-model="barcode" type="text" placeholder="鎵爜 / 杈撳叆" maxlength="8"> + <input v-model="barcode" type="text" placeholder="鎵爜 / 杈撳叆" maxlength="8" + :focus="barcodeFocus" @focus="nextInput"> <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode()"></uni-icons> </view> </view> </view> - <!-- <view class="pak-seach-box"> - <view class="box-top"> - <view class="color-block-blue"></view> - <text class="title">鎵樼洏鏉$爜</text> - </view> - <view class="box-buttom"> - <input v-model="barcode" type="text" placeholder="鎵爜 / 杈撳叆" maxlength="8"> - <view class="search-icon"> - <uni-icons type="closeempty" size="20" color="#a5a5a5" @click="removeBarcode()"></uni-icons> - </view> - </view> - </view> --> <view class="square-2"> <view class="square-title"> @@ -34,7 +23,8 @@ </view> <view class="square-content"> <view class="content-input-btn"> - <input v-model="matnr" type="text" placeholder="鎵爜 / 杈撳叆" @input="findMat()"> + <input v-model="matnr" type="text" placeholder="鎵爜 / 杈撳叆" @input="findMat()" + :focus="focus"> <uni-icons type="closeempty" size="20" color="#dadada" @click="removeMatnr()"></uni-icons> </view> <view class="content-btn"> @@ -43,19 +33,6 @@ </view> </view> - <!-- <view class="pak-seach-box"> - <view class="box-top"> - <view class="color-block-blue"></view> - <text class="title">妫�绱㈠晢鍝�</text> - </view> - <view class="box-buttom"> - <input v-model="matnr" type="text" placeholder="鎵爜 / 杈撳叆" @input="findMat()"> - <view class="search-icon"> - <uni-icons type="closeempty" size="20" color="#a5a5a5" @click="removeMatnr()"></uni-icons> - </view> - </view> - <button class="cu-btn bg-blue" @click="selectMat()">+鎻愬彇</button> - </view> --> <view class="square-1"> <view class="square-title"> @@ -67,25 +44,19 @@ <view class="v-show">鏆傛棤鏇村鏁版嵁...</view> </view> - <!-- <view class="pak-data-box"> - <view class="box-top"> - <view class="color-block-blue"></view> - <text class="title">鍟嗗搧鍒楄〃</text> - </view> - </view> - <view class="pak-data-box" v-show="matList.length === 0"> - <view style="text-align: center;">鏆傛棤鏇村鏁版嵁</view> - </view> --> <checkbox-group @change="checkbox"> <view v-for="(item,index) in matList" :key="index" class="data-list bg-false" :class="'bg-'+item.checked" > <view class="data-list-left"> <view class="matnr"><text style="width: 400rpx;">缂栫爜锛歿{item.matnr}}</text></view> <view><text style="width: 400rpx;">鍝佸悕锛歿{item.maktx}}</text></view> <view><text style="width: 400rpx;">鎵瑰彿锛歿{item.batch}}</text></view> - <view><text style="width: 400rpx;">鏁伴噺锛歿{item.anfme}}</text></view> + <view> + <text style="width: 400rpx;">鏁伴噺锛歿{item.anfme}}</text> + </view> </view> <view class="data-list-right"> - <uni-icons type="trash" size="25" color="#a5a5a5" @click="remove(item,index)"></uni-icons> + <label><uni-icons type="compose" size="20" color="#a5a5a5" @click="revise(item,index)"></uni-icons></label> + <label><uni-icons type="trash" size="25" color="#a5a5a5" @click="remove(item,index)"></uni-icons></label> </view> </view> </checkbox-group> @@ -98,6 +69,29 @@ <button class="cu-btn lg pakin-btn bg-blue" @click="comb()">缁勬墭</button> </view> </view> + <!-- 淇敼鏁伴噺 --> + <uni-popup ref="revise" background-color="#fff" @change="change"> + <view class="revise-box"> + <view class="revise-box-top"> + <view class="color-block-blue"></view> + <text class="title">缁勬墭鏁伴噺</text> + </view> + <view class="text-box"> + <text>鍙粍鏁伴噺锛歿{enableQty}}</text> + </view> + <view class="changeBox"> + <view class="num-box"> + <uni-number-box v-model="count" :min="minCount" :max="maxCount" color="#747474" @change="changeValue"/> + </view> + </view> + <view class="revise-box-buttom"> + <view> + <button class="cu-btn bg-blue" @click="confirm()">纭</button> + </view> + </view> + + </view> + </uni-popup> </view> </template> @@ -107,14 +101,28 @@ data() { return { barcode: '', + barcodeFocus:true, + focus:false, type: 'center', searchBox: 'hide', pick:'hide', matnr:'', matList:[], - result: '' + result: '', + enableQty:'', + count:'', + minCount:0, + maxCount:'', + rowNum:'', } }, + // onLoad() { + // // #ifdef APP + // setInterval(()=>{ + // uni.hideKeyboard() + // },20) + // // #endif + // }, mounted(){ const UIP = uni.getStorageSync('UIP'); this.baseIP = UIP; @@ -122,6 +130,21 @@ this.basePORT = UPORT }, methods: { + nextInput() { + if (this.barcode.length == 8) { + this.focuss() + } + }, + focuss() { + // #ifdef APP + let that = this; + that.focus = false; + setTimeout(()=>{ + that.matnrId = ''; + that.focus = true; + }, 100); + // #endif + }, resst() { this.matList = [] this.barcode = '' @@ -131,10 +154,18 @@ removeBarcode() { this.barcode = '' uni.vibrateShort(); + this.barcodeFocus = false; + this.$nextTick(function() { + this.barcodeFocus = true; + }); }, removeMatnr() { this.matnr = '' uni.vibrateShort(); + this.focus = false; + this.$nextTick(function() { + this.focus = true; + }); }, remove(item,index) { this.matList.splice(index,1) @@ -163,9 +194,10 @@ 'token':uni.getStorageSync('token') }, success(result) { - uni.showLoading(); + uni.hideLoading(); var res = result.data if (res.code === 200) { + that.resst(); uni.showToast({ title: res.msg, position: 'bottom', @@ -187,18 +219,17 @@ selectMat() { let that = this uni.vibrateShort(); - uni.showLoading(); uni.navigateTo({ url: "matSelect", events: { - // 涓烘寚瀹氫簨浠舵坊鍔犱竴涓洃鍚櫒锛岃幏鍙栬鎵撳紑椤甸潰浼犻�佸埌褰撳墠椤甸潰鐨勬暟鎹� + // 涓烘寚瀹氫簨浠舵坊鍔犱竴涓洃鍚櫒锛岃幏鍙栬鎵撳紑椤甸潰浼犻�佸埌褰撳墠椤甸潰鐨勬暟鎹� 鍙﹀涓�涓〉闈紶杩囨潵鐨� acceptDataFromOpenedPage: function(data) { that.matnr = data.data that.findMat(that.matnr) }, }, success: function(res) { - // 閫氳繃eventChannel鍚戣鎵撳紑椤甸潰浼犻�佹暟鎹� + // 閫氳繃eventChannel鍚戣鎵撳紑椤甸潰浼犻�佹暟鎹� 鍚戝彟澶栦竴涓〉闈紶閫掑�肩殑 res.eventChannel.emit('acceptDataFromOpenerPage', {baseIP:that.baseIP, basePORT:that.basePORT }) } }); @@ -225,6 +256,7 @@ // 涓烘寚瀹氫簨浠舵坊鍔犱竴涓洃鍚櫒锛岃幏鍙栬鎵撳紑椤甸潰浼犻�佸埌褰撳墠椤甸潰鐨勬暟鎹� matList: function(data) { that.matList.push(data.data) + console.log(that.matList) }, }, success: function(res) { @@ -266,6 +298,29 @@ this.checkText = "鍏ㄩ��" } uni.vibrateShort(); + }, + revise(item,index) { + var maxCount = this.matList[index].maxCount + if (maxCount == undefined ) { + this.matList[index]["maxCount"] = item.enableQty + } + this.enableQty = item.enableQty + this.count = this.minCount + this.maxCount = item.maxCount + this.rowNum = index + this.eject() + }, + eject(type) { + this.type = type + // open 鏂规硶浼犲叆鍙傛暟 绛夊悓鍦� uni-popup 缁勪欢涓婄粦瀹� type灞炴�� + this.$refs.revise.open(type) + }, + changeValue() { + + }, + confirm() { + this.matList[this.rowNum].anfme = this.count + this.$refs.revise.close() }, } } @@ -404,6 +459,16 @@ float: right; height: 180rpx; line-height: 180rpx; - margin-right: 10%; + } + /* display: inline-block; + float: right; + width: 200rpx; + height: 180rpx; + line-height: 180rpx; */ + .data-list-right label { + display: inline-block; + float: left; + width: 80rpx; + height: 180rpx; } </style> \ No newline at end of file -- Gitblit v1.9.1