Blame view

components/thorui/tui-checkbox-group/tui-checkbox-group.vue 1.75 KB
46b6767c   刘淇   init 提交到库
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-->
  	<checkbox-group :name="name">
  		<slot></slot>
  	</checkbox-group>
  	<!-- #endif -->
  
  	<!-- #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ -->
  	<tui-form-field :name="name" v-model="vals">
  		<slot></slot>
  	</tui-form-field>
  	<!-- #endif -->
  </template>
  
  <script>
  	export default {
  		name: "tui-checkbox-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
  		props: {
  			name: {
  				type: String,
  				default: ''
  			},
  			// #ifdef VUE3
  			modelValue: {
  				type: Array,
  				default () {
  					return []
  				}
  			},
  			// #endif
  			value: {
  				type: Array,
  				default () {
  					return []
  				}
  			}
  		},
  		data() {
  			return {
  				vals: ''
  			};
  		},
  		watch: {
  			// #ifdef VUE3
  			modelValue(vals) {
  				this.modelChange(vals)
  			},
  			// #endif
  			value(vals) {
  				this.modelChange(vals)
  			}
  		},
  		created() {
  			this.childrens = []
  		},
  		methods: {
  			checkboxChange(e) {
  				this.$emit('change', e)
  				this.$emit('input', e.detail.value)
  				// #ifdef VUE3
  				this.$emit("update:modelValue", e.detail.value);
  				// #endif
  			},
  			changeValue(checked, target) {
  				let vals = []
  				this.childrens.forEach(item => {
  					if (item.val) {
  						vals.push(item.value);
  					}
  				})
  				this.vals = vals;
  				let e = {
  					detail: {
  						value: vals
  					}
  				}
  				this.checkboxChange(e)
  			},
  			modelChange(vals) {
  				this.childrens.forEach(item => {
  					if (vals.includes(item.value)) {
  						item.val = true;
  					} else {
  						item.val = false
  					}
  				})
  			}
  		}
  	}
  </script>
  
  <style></style>