tui-radio-group.vue
1.78 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
<template>
<!-- #ifdef APP-PLUS || H5 || MP-ALIPAY || MP-TOUTIAO -->
<radio-group :name="name">
<slot></slot>
</radio-group>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ -->
<tui-form-field :name="name" v-model="val">
<slot></slot>
</tui-form-field>
<!-- #endif -->
</template>
<script>
export default {
name: "tui-radio-group",
emits: ['change', 'input', 'update:modelValue'],
// #ifdef MP-WEIXIN
behaviors: ['wx://form-field-group'],
// #endif
// #ifdef MP-BAIDU || MP-QQ
//如果在这些平台不需要也能识别,则删除
behaviors: ['uni://form-field'],
// #endif
// #ifdef MP-WEIXIN
options: {
virtualHost: true
},
// #endif
props: {
name: {
type: String,
default: ''
},
// #ifdef VUE3
modelValue: {
type: String,
default: ''
},
// #endif
value: {
type: String,
default: ''
}
},
data() {
return {
val: ''
}
},
watch: {
// #ifdef VUE3
modelValue(val) {
this.modelChange(val)
},
// #endif
value(val) {
this.modelChange(val)
}
},
created() {
this.childrens = []
},
methods: {
radioChange(e) {
this.$emit('change', e)
this.$emit('input', e.detail.value)
// #ifdef VUE3
this.$emit("update:modelValue", e.detail.value);
// #endif
},
changeValue(value, target) {
if (this.val === value) return;
this.val = value;
this.childrens.forEach(item => {
if (item !== target) {
item.val = false;
}
})
let e = {
detail: {
value: value
}
}
this.radioChange(e)
},
modelChange(value) {
this.childrens.forEach(item => {
if (item.value === value) {
item.val = true;
} else {
item.val = false;
}
})
}
}
}
</script>
<style></style>