lbp-form-radio.js
1.73 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
import './styles/radio.scss'
import commonProps from './common/props.js'
import { genUUID } from '../../utils/element.js'
export default {
name: 'lbp-form-radio',
props: {
...commonProps,
value: {
type: [String, Number],
default: '选项值'
},
aliasName: {
type: String,
default: '标题演示'
},
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>
)
}
}