From f11f38fbd00c39c9a021807b6b585c6fb0c5aa96 Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期一, 01 四月 2024 14:44:31 +0800
Subject: [PATCH] #
---
pages/tzsk/AGV/AGVPakinBing.vue | 32 +++++++++++++++++++++++++-------
1 files changed, 25 insertions(+), 7 deletions(-)
diff --git a/pages/tzsk/AGV/AGVPakinBing.vue b/pages/tzsk/AGV/AGVPakinBing.vue
index 1a9d7d7..8db7e37 100644
--- a/pages/tzsk/AGV/AGVPakinBing.vue
+++ b/pages/tzsk/AGV/AGVPakinBing.vue
@@ -17,9 +17,9 @@
</view>
</view>
</view>
- <!-- <view class="mat-list-title">
+ <view class="mat-list-title">
鍟嗗搧鍒楄〃
- </view> -->
+ </view>
<scroll-view>
<view class="list" v-for="(item,i) in dataList" :key="i">
<view class="list-left">
@@ -132,6 +132,10 @@
@confirm="resetConfirm" @close="resetClose"></uni-popup-dialog>
</uni-popup>
</view>
+
+ <view class="keyboard" :class="hidebg" mode="aspectFit" @click="hideKeyboard">
+ <image src="@/static/img/keyboard1.png" style="height: 70%;width: 70%;"></image>
+ </view>
</view>
</template>
@@ -159,7 +163,8 @@
matFocus: false,
matData: '',
removeNum: 0,
- hide: true
+ hide: true,
+ hidebg: 'kb-bgtr'
}
},
onLoad() {
@@ -181,6 +186,14 @@
this.token = uni.getStorageSync('token');
},
methods: {
+ hideKeyboard() {
+ this.hide = this.hide ? false : true
+ if (this.hide) {
+ this.hidebg = 'kb-bgtr'
+ } else {
+ this.hidebg = 'kb-bgfa'
+ }
+ },
messageToggle(type) {
this.msgType1 = type
this.$refs.message.open()
@@ -204,7 +217,9 @@
// barcode input 浜嬩欢
barcodeInput() {
// 涓嶈缃畾鏃跺櫒 浼氬嚭鐜版壂鍏ョ殑瀛楃涓蹭笉鍏�
- this.barcode = this.barcode.split('_')[1]
+ if (this.barcode.split('_')[1]) {
+ this.barcode = this.barcode.split('_')[1]
+ }
setTimeout(() => {
var len = this.barcode.length
if (len != 10) {
@@ -482,10 +497,13 @@
<style>
@import url('../../../static/css/wms.css/wms.css');
+ .list:first-child {
+ margin-top: 280rpx;
+ }
.code {
width: 100%;
position: fixed;
- min-height: 200rpx;
+ min-height: 140rpx;
background-color: #FFF;
z-index: 10;
}
@@ -493,7 +511,7 @@
.item {
display: flex;
align-items: center;
- height: 100rpx;
+ height: 70rpx;
margin-left: 20rpx;
border-bottom: 1px solid #DCDFE6;
}
@@ -525,7 +543,7 @@
width: 100%;
background-color: white;
position: fixed;
- margin-top: 200rpx;
+ margin-top: 140rpx;
z-index: 9;
/* border-top: 1px solid #DCDFE6; */
text-align: center;
--
Gitblit v1.9.1