入库功能完成

This commit is contained in:
赵正易
2024-03-15 17:56:22 +08:00
parent b58b954436
commit 0da532301b
15 changed files with 1116 additions and 273 deletions

View File

@@ -2,7 +2,7 @@
<view class="content background">
<view class="title-box">道安WMS-PDA扫码</view>
<view class="grid-box">
<uni-grid :column="2" @change="gridCheck">
<uni-grid :column="3" @change="gridCheck" :showBorder="false" :highlight="false">
<uni-grid-item v-for="(item, index) in gridItemList" :index="index + 1">
<view class="item">
<uni-icons :type="item.icon" :size="48" color="#777" />
@@ -26,16 +26,17 @@ export default {
{ name: '入库', icon: 'download-filled' },
{ name: '出库', icon: 'upload-filled' },
{ name: '盘点', icon: 'wallet-filled' },
{ name: '移库', icon: 'cart-filled' }
{ name: '移库/拼箱', icon: 'cart-filled' },
{ name: '退库', icon: 'undo-filled' }
]
};
},
onLoad: function () {},
mounted() {
setInterval(function () {
uni.hideKeyboard(); //隐藏软键盘
// plus.key.hideSoftKeybord();
}, 60);
// setInterval(function () {
// uni.hideKeyboard(); //隐藏软键盘
// // plus.key.hideSoftKeybord();
// }, 60);
},
methods: {
@@ -62,6 +63,11 @@ export default {
url: '/pages/relocation/relocation'
});
break;
case 5:
uni.navigateTo({
url: '/pages/returnWarehose/returnWarehose'
});
break;
default:
break;
}
@@ -102,4 +108,7 @@ export default {
align-items: center;
justify-content: center;
}
.text {
font-size: 24px;
}
</style>