#
whycq
2022-09-21 715e98f510a4c1f024eb8f82044e644ca5c73070
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
<template>
    <view>
        <view class="square-2">
            <view class="square-title">
                <view class="title-sign"><view class="sign"></view></view>
                <view class="title-text"><text>托盘条码</text></view>
            </view>
            <view class="square-content">
                <view class="content-input">
                    <input readonly="value" v-model="value" type="text" placeholder="扫码 / 输入" maxlength="8"
                    :focus="barcodeFocus" @input="nextInput">
                    <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode()"></uni-icons>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        name:"pda-input",
        data() {
            return {
                value:''
            };
        },
        methods: {
            
        }
    }
</script>
 
<style>
 
</style>