1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| <template>
| <view class="">
| <scroll-view class="scroll-Y">
| <button size="mini" @click="up">btn</button>
| <y-input title="商品码" @input="show" v-model="matnr"/>
| <y-input title="库位码" @input="show" v-model="locno"/>
| <input type="text" v-model="matnr">
| </scroll-view>
| </view>
| </template>
|
| <script>
| export default {
| data () {
| return {
| scrollY:true,
| matnr:'1',
| locno: ''
| }
| },
| methods: {
| open() {
| this.$refs.yPopup.open('center')
| },
| up() {
| this.matnr = ''
| console.log(this.matnr);
| },
| show() {
| console.log(this.matnrs,this.locno);
| }
| }
|
| }
| </script>
|
| <style>
| .vv {
| width: 100%;height: 100rpx;
|
| }
| .bb {
| position: fixed;
| top: 0;
| left: 0;
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| </style>
|
|