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
| <template>
| <view class="m-input-view">
| <input :focus="focus" :type="inputType" :value="value" @input="onInput" class="m-input-input" :placeholder="placeholder"
| :password="type==='password'&&!showPassword" @focus="onFocus" @blur="onBlur" />
| <!-- 优先显示密码可见按钮 -->
| <view v-if="clearable&&!displayable&&value.length" class="m-input-icon">
| <m-icon color="#666666" type="clear" @click="clear"></m-icon>
| </view>
| <view v-if="displayable" class="m-input-icon">
| <m-icon :style="{color:showPassword?'#666666':'#cccccc'}" type="eye" @click="display"></m-icon>
| </view>
| </view>
| </template>
|
| <script>
| import mIcon from './m-icon/m-icon.vue'
|
| export default {
| components: {
| mIcon
| },
| props: {
| /**
| * 输入类型
| */
| type: String,
| /**
| * 值
| */
| value: String,
| /**
| * 占位符
| */
| placeholder: String,
| /**
| * 是否显示清除按钮
| */
| clearable: {
| type: [Boolean, String],
| default: false
| },
| /**
| * 是否显示密码可见按钮
| */
| displayable: {
| type: [Boolean, String],
| default: false
| },
| /**
| * 自动获取焦点
| */
| focus: {
| type: [Boolean, String],
| default: false
| }
| },
| model: {
| prop: 'value',
| event: 'input'
| },
| data() {
| return {
| /**
| * 显示密码明文
| */
| showPassword: false,
| /**
| * 是否获取焦点
| */
| isFocus: false
| }
| },
| computed: {
| inputType() {
| const type = this.type
| return type === 'password' ? 'text' : type
| }
| },
| methods: {
| clear() {
| this.$emit('input', '')
| },
| display() {
| this.showPassword = !this.showPassword
| },
| onFocus() {
| this.isFocus = true
| },
| onBlur() {
| this.$nextTick(() => {
| this.isFocus = false
| })
| },
| onInput(e) {
| this.$emit('input', e.detail.value)
| }
| }
| }
| </script>
|
| <style>
| .m-input-view {
| display: inline-flex;
| flex-direction: row;
| align-items: center;
| /* width: 100%; */
| flex: 1;
| padding: 0 10px;
| }
|
| .m-input-input {
| flex: 1;
| width: 100%;
| height: 20px;
| line-height: 20px;
| background-color: rgba(0, 0, 0, 0);
| }
|
| .m-input-icon {
| /* width: 20px; */
| font-size: 20px;
| line-height: 20px;
| color: #666666;
| }
| </style>
|
|