#
whycq
2023-10-16 67271e43ba60ea115e0e92d9639ecb5a50e59e2c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<template>
    <view>
        <view class="main">
            <view class="inner1">{{desc}}</view>
            <view class="put inner2">
                <input class="p-input" 
                    type="text" 
                    :placeholder="placeholder" 
                    v-model="data" 
                    :focus="focusData" @input="inputVal">
                    
                <uni-icons class="p-icon" 
                    type="closeempty" 
                    size="16" 
                    color="#b9b9b9" 
                    v-show="data.length" 
                    @click="clear">
                </uni-icons>
            </view>
            <view class="inner3" v-show="btn">
                <button class="m-btn" size="mini" @click="clickBtn">{{btnName}}</button>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        name:"z-input",
        data() {
            return {
                data:'',
                focusData: false
            };
        },
        props: {
            index: {
                type: Number,
                default: 0
            },
            desc: {
                type: String,
                default: ''
            },
            name: {
                type: String,
                default: ''
            },
            btn: {
                type: Boolean,
                default: false
            },
            btnName: {
                type: String,
                default: 'button'
            },
            placeholder: {
                type: String,
                default: '扫码 / 录入'
            },
            value: {
                type: [String,Number],
                default: ''
            },
            lenCheck: {
                type: [Number],
                default: null
            },
            focus: {
                type: Boolean,
                default: false
            }
        },
        watch: {
            data(val) {
                if (!this.lenCheck) {
                    this.$emit('input',val)
                    return
                }
                if (val.length != this.lenCheck) {
                    setTimeout(()=>{
                        this.data = ''
                        this.$emit('input','')
                    },10)
                } else {
                    this.$emit('input',val)
                }
            },
            value(val) {
                this.data = val
            },
            focus(f) {
                this.focusData = !f
                setTimeout(()=>{
                    this.focusData = f
                },10)
            }
        },
        created() {
            this.data = this.value
            this.focusData = this.focus
        },
        methods: {
            clear() {
                this.data = ''
            },
            clickBtn() {
                this.$emit('clickBtn');
            },
            inputVal() {
                this.$emit('inputVal',[this.data,this.name]);
            }
        }
    }
</script>
 
<style scoped>
    .main {
        display: flex;
        align-items: center;
        min-height: 35px;
        background-color: #f8f8f8;
        margin: 8px;
    }
    .put {
        display: flex;
        flex-shrink: 0;
    }
    
    .inner1 {
        width: 55px;
        padding-left: 8px;
        color: #606164;
        font-weight: 900;
        font-family:'Helvetica Neue';
    }
    .inner2 {
        background-color: #FFF;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        color: #606266;
    }
    .p-input {
        flex:1;
        padding: 4px;
    }
    .p-icon {
        margin-left: 8px;
        margin-right: 8px;
    }
    .inner3 {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .m-btn {
        background-color: #00aeec;
        color: #FFF;
    }
    .m-btn:active {
        background-color: #55bbff;
        color: #FFF;
    }
 
</style>