<template>
|
<view class="">
|
<scroll-view class="scroll-Y">
|
<button size="mini" @click="up">btn</button>
|
<y-input title="商品码" @input="show" v-model="matnr" placeholder=" 扫码 / 输入"/>
|
<y-input title="库位码" @input="show" v-model="locno"/>
|
<y-input title="托盘码" v-model="barcode" />
|
<y-input title="订单码" v-model="orderNo"></y-input>
|
<y-input-btn title="订单码" v-model="orderNo" btnTitle="提取+" @confrim="changge"></y-input-btn>
|
|
<view style="margin: 2%;border-radius: 5rpx;background-color: #fff;width: 96%;min-height: 50rpx;">
|
<y-title title="title" />
|
</view>
|
</scroll-view>
|
</view>
|
</template>
|
|
<script>
|
export default {
|
data () {
|
return {
|
scrollY:true,
|
matnr:'1100878-10000-21074558989',
|
locno: '0100509',
|
barcode: '80006098',
|
orderNo: 'JK20220923'
|
|
}
|
},
|
methods: {
|
open() {
|
this.$refs.yPopup.open('center')
|
},
|
up() {
|
this.matnr = ''
|
console.log(this.matnr);
|
},
|
show() {
|
console.log(this.matnr,this.locno);
|
},
|
changge() {
|
this.matnr = ''
|
console.log(this.barcode,this.orderNo);
|
}
|
}
|
|
}
|
</script>
|
|
<style>
|
.vv {
|
width: 100%;height: 100rpx;
|
|
}
|
.bb {
|
position: fixed;
|
top: 0;
|
left: 0;
|
width: 100%;
|
height: 100%;
|
overflow: hidden;
|
}
|
</style>
|