lbp-form-radio.js
2.11 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
/*
* @Author: ly525
* @Date: 2020-05-17 19:54:20
* @LastEditors: ly525
* @LastEditTime: 2020-05-17 19:55:02
* @FilePath: /luban-h5/front-end/h5/src/components/plugins/lbp-form-radio.js
* @Github: https://github.com/ly525/luban-h5
* @Description: Do not edit
* @Copyright 2018 - 2019 luban-h5. All Rights Reserved
*/
import './styles/radio.scss'
// https://github.com/luban-h5-components/plugin-common-props
import { genUUID } from '../../utils/element.js'
export default {
name: 'lbp-form-radio',
props: {
value: {
type: [String, Number],
default: '选项值'
},
aliasName: {
type: String,
default: '标题演示'
},
type: {
type: String,
default: 'radio'
},
checked: {
type: Boolean,
default: false
},
onFocus: {
type: Function,
default: () => {}
},
onClick: {
type: Function,
default: () => {}
},
onBlur: {
type: Function,
default: () => {}
},
doChange: {
type: Function,
default: () => {}
}
},
methods: {
handleChange (e) {
if (this.disabled) return
this.$emit('change', e.target.value)
}
},
render () {
const {
aliasName,
type,
disabled,
checked,
value
} = this
const uuid = +new Date() + genUUID()
return (
<div class={['lbp-' + this.type + '-wrapper', 'lbp-rc-wrapper']}>
<span class="tag">{value}</span>
<input
class={['lbp-' + this.type, 'lbp-rc-input']}
name={aliasName}
id={uuid}
type={type}
ref="input"
value={value}
disabled={disabled}
checked={!!checked}
onChange={this.handleChange}
// readOnly={readOnly}
// tabIndex={tabIndex}
// className={`${prefixCls}-input`}
// onClick={this.onClick}
// onFocus={this.onFocus}
// onBlur={this.onBlur}
// onInput={this.onInput}
// autoFocus={autoFocus}
// data-type="lbp-form-input"
/>
<label for={uuid}></label>
</div>
)
}
}