c-input-item.vue
10.3 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<template>
<view class="c-input-item">
<!-- 文本、数字框 -->
<u-form-item v-if="type == 'text'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212'}" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" :maxlength="maxlenth" input-align="left" :disabled="disabled" :border="border"
:placeholder="placeholder ? placeholder : '请输入'" :placeholderStyle="placeholderStyle"
:customStyle="{fontSize:'36rpx'}" :clearable="clearable" @focus="onFocus"
@click="handelClick('text')" />
</u-form-item>
<u-form-item v-if="type == 'number'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212'}" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" :maxlength="maxlenth" type="number" input-align="left" :disabled="disabled"
:border="border" :placeholder="placeholder ? placeholder : '请输入'" :placeholderStyle="placeholderStyle"
:clearable="clearable" :customStyle="{fontSize:'36rpx'}" />
</u-form-item>
<!-- 单选 -->
<u-form-item v-if="type == 'radio'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212' }" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-radio-group v-model="getValues">
<u-radio v-for="(item, index) in options" :key="index" :name="item.value" :disabled="item.disabled"
active-color="#54B4F5">
{{ item.label }}
</u-radio>
</u-radio-group>
</u-form-item>
<!-- 时间选择器 -->
<u-form-item v-if="type == 'date'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212' }" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" type="text" input-align="left" :disabled="true" :border="border"
:clearable="clearable" :placeholder="placeholder ? placeholder : '请选择时间'"
:placeholderStyle="placeholderStyle" @click="time_visible = true" :customStyle="{fontSize:'36rpx'}" />
<u-picker @confirm="onConfirmTime" mode="time" v-model="time_visible" :params="{
year: true,
month: true,
day: true,}"></u-picker>
</u-form-item>
<!-- 单列模式 -->
<u-form-item v-if="type == 'select'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212' }" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" :maxlength="100" input-align="left" :disabled="true" :border="border"
:clearable="clearable" :placeholder="placeholder ? placeholder : '请选择'"
:placeholderStyle="placeholderStyle" :customStyle="{fontSize:'36rpx'}" @click="handelClick('select')" />
<u-select @confirm="onConfirmSingle" v-model="select_visible" mode="single-column" :list="options"
:default-value="defs">
</u-select>
</u-form-item>
<!-- 多列联动模式 -->
<u-form-item v-if="type == 'cascader'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212' }" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" input-align="left" :disabled="true" :border="border" :clearable="clearable"
:placeholder="placeholder ? placeholder : '请选择'" :placeholderStyle="placeholderStyle"
@click="select_visible = true" />
<u-select @confirm="onConfirmAutoMutil" v-model="select_visible" mode="mutil-column-auto" :list="options">
</u-select>
</u-form-item>
<!-- 省市区选择 -->
<u-form-item v-if="type == 'area'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212' }" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" input-align="left" :disabled="true" :border="border" :clearable="clearable"
:placeholder="placeholder ? placeholder : '请选择'" :placeholderStyle="placeholderStyle"
@click="select_visible = true" :customStyle="{fontSize:'36rpx'}" />
<u-select @confirm="onConfirmArea" v-model="select_visible" mode="mutil-column-auto" :list="options">
</u-select>
</u-form-item>
<!-- 文本输入框 -->
<u-form-item v-if="type == 'textarea'" :label="label" :labelWidth="200" :label-position='"top"'
:label-style="{whiteSpace:'nowrap',fontSize:'26rpx', color:'#121212'}" :border-bottom="borderBottom" :required="required"
:right-icon="rightIcon ? 'arrow-right' : ''" :prop="name">
<u-input v-model="getValues" input-align="left" :disabled="disabled" :border="border"
:placeholder="placeholder ? placeholder : '请输入'" :placeholderStyle="placeholderStyle"
:clearable="clearable" :customStyle="{fontSize:'36rpx'}" />
</u-form-item>
</view>
</template>
<script>
// import miment from 'miment'
import {
getLabel
} from '../../common/util.js'
export default {
name: 'u-input-item',
props: {
//title
label: {
type: String,
default: ''
},
type: {
type: String,
default: 'text'
},
// 是否显示左边的必填星号,只作显示用,具体校验必填的逻辑,请在rules中配置
required: {
type: Boolean,
default: false
},
rightIcon: {
type: Boolean,
default: true
},
//表单提交时的key
name: {
type: String,
default: ''
},
value: {
type: Object,
default () {
return {}
}
},
clearable: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
border: {
type: Boolean,
default: false
},
borderBottom: {
type: Boolean,
default: true
},
placeholder: {
type: String,
default: ''
},
maxlenth: {
type: String,
default: '100'
},
placeholderStyle: {
type: String,
default: 'font-size:34rpx;color:rgba(0,0,0,0.5);'
},
customStyle: {
type: Object,
default () {
return {};
}
},
//单选框数据列表
options: {
type: Array,
default () {
return []
}
},
//
defs: {
type: Array,
default () {
return [0]
}
},
},
data() {
return {
time_visible: false,
select_visible: false,
currentValue: '',
}
},
watch: {
},
computed: {
getValues: {
// getter
get: function() {
const defaultValue = this.$parent.model[this.name];
let finalValue = ''
if (!defaultValue || defaultValue.length <= 0 || JSON.stringify(defaultValue) == '{}') {
return ''
}
switch (this.type) {
case 'date':
return defaultValue > 0 ? this.$u.timeFormat(defaultValue) : ''
break;
case 'select':
const selectValue = this.options.filter((item, index) => {
return defaultValue == item.value
})
return selectValue[0].label
break;
case 'cascader':
const {
options = []
} = this;
return defaultValue
break;
case 'area':
finalValue = defaultValue.province + '/' + defaultValue.city + '/' + defaultValue
.district
return finalValue
break;
default:
return defaultValue
break;
}
},
// setter
set: function(newValue) {
console.log(newValue)
switch (this.type) {
case 'number':
this.$emit('input', newValue);
return newValue
break;
case 'text':
case 'textarea':
case 'radio':
this.$emit('input', newValue);
return newValue
break;
case 'date':
case 'select':
case 'area':
return this.currentValue
break;
}
}
}
},
methods: {
handelClick(type) {
switch (type) {
case 'text':
this.$emit('click', '');
break;
case 'select':
this.select_visible = true;
try {
// 收起键盘
uni.hideKeyboard();
} catch (e) {}
break;
}
},
onFocus(value) {
this.$emit('focus', value);
},
onConfirmTime(value) {
const millisecond = new Date().setFullYear(value.year, Number(value.month) - 1, value.day);
const timestamp = Math.floor(millisecond / 1000);
let currentValue = this.$u.timeFormat(timestamp)
console.log(timestamp, currentValue)
this.currentValue = currentValue;
this.$emit('input', timestamp);
},
onConfirmSingle(value) {
this.currentValue = value[0].label;
this.$emit('input', value[0].value);
},
onConfirmAutoMutil(value) {
let currentValue = '';
let newValue = [];
if (value && value.length > 0) {
value.map((item, index, array) => {
if (index == array.length - 1) {
currentValue += item.label
} else {
currentValue += (item.label + '/')
}
newValue.push(item.label)
})
}
this.currentValue = currentValue;
this.$emit('input', newValue);
},
onConfirmArea(value) {
console.log(value)
let currentValue = '';
let newValue = {};
if (value && value.length > 0) {
value.map((item, index, array) => {
switch (index) {
case 0:
currentValue += (item.label + '/')
newValue.province = item.label;
newValue.province_code = item.value;
break;
case 1:
currentValue += (item.label + '/')
newValue.city = item.label;
newValue.city_code = item.value;
break;
case 2:
currentValue += (item.label)
newValue.district = item.label;
newValue.district_code = item.value;
break;
}
})
}
this.currentValue = currentValue;
this.$emit('input', newValue);
},
}
}
</script>
<style lang="scss" scoped>
.c-input-item {
u-radio-group {
text-align: right;
display: flex;
flex-direction: row-reverse;
}
}
</style>