Blame view

components/thorui/tui-switch/tui-switch.vue 4.43 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
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
  <template>
  	<view class="tui-switch__input" :style="{zoom:nvue?1:scaleRatio,transform:`scale(${nvue?scaleRatio:1})`}">
  		<switch class="tui-switch" v-if="type==='switch'"
  			:class="{'tui-switch__pevents':isLabel}" @change="change" :name="name" :checked="val" :disabled="disabled"
  			:color="getColor">
  		</switch>
  		<view class="tui-switch__checkbox-self" :class="{'tui-switch__disabled':disabled}"
  			:style="{backgroundColor:val?getColor:'#fff',border:val?`1px solid ${getColor}`:`1px solid ${borderColor}`}"
  			v-else>
  			<view class="tui-switch__check-mark"
  				:style="{borderBottomColor:checkMarkColor,borderRightColor:checkMarkColor}" v-if="val"></view>
  			<switch class="tui-switch__hidden" :class="{'tui-switch__pevents':isLabel}"
  				style="position: absolute;opacity: 0;" @change="change" :name="name" type="checkbox" :checked="val"
  				:disabled="disabled"></switch>
  		</view>
  	</view>
  </template>
  
  <script>
  	export default {
  		name: "tui-switch",
  		emits: ['change'],
  		// #ifdef MP-WEIXIN
  		behaviors: ['wx://form-field-group'],
  		// #endif
  		// #ifdef MP-BAIDU || MP-QQ
  		behaviors: ['uni://form-field'],
  		// #endif
  		props: {
  			//开关选择器名称
  			name: {
  				type: String,
  				default: ''
  			},
  			checked: {
  				type: Boolean,
  				default: false
  			},
  			disabled: {
  				type: Boolean,
  				default: false
  			},
  			//样式,有效值:switch, checkbox
  			type: {
  				type: String,
  				default: 'switch'
  			},
  			//switch选中颜色
  			color: {
  				type: String,
  				default: ''
  			},
  			//边框颜色,type=checkbox时生效
  			borderColor: {
  				type: String,
  				default: '#ccc'
  			},
  			//对号颜色,type=checkbox时生效
  			checkMarkColor: {
  				type: String,
  				default: '#fff'
  			},
  			scaleRatio: {
  				type: [Number, String],
  				default: 1
  			}
  		},
  		computed: {
  			getColor() {
  				return this.color || (uni && uni.$tui && uni.$tui.color.primary) || '#5677fc'
  			}
  		},
  		data() {
  			let nvue = false;
  			// #ifdef APP-NVUE
  			nvue = true;
  			// #endif
  			return {
  				val: false,
  				nvue: nvue,
  				isLabel: false
  			};
  		},
  		watch: {
  			checked(val) {
  				this.val = val;
  			}
  		},
  		created() {
  			this.val = this.checked;
  			this.label = this.getParent();
  			if (this.label) {
  				this.isLabel = true
  				this.label.childrens.push(this)
  			}
  		},
  		methods: {
  			change(e, label) {
  				if (this.label && !label) return;
  				this.val = e.detail.value;
  				this.$emit('change', e)
  			},
  			labelClick() {
  				if (this.disabled) return;
  				let e = {
  					detail: {
  						value: !this.val
  					}
  				}
  				this.change(e, true)
  			},
  			getParent(name = 'tui-label') {
  				let parent = this.$parent;
  				let parentName = parent.$options.name;
  				while (parentName !== name) {
  					parent = parent.$parent;
  					if (!parent) return false;
  					parentName = parent.$options.name;
  				}
  				return parent;
  			}
  		}
  	}
  </script>
  
  <style scoped>
  
  	/* #ifndef APP-NVUE */
  	.tui-switch__input {
  		display: inline-block;
  	}
  
  	/* #endif */
  	.tui-switch__checkbox-self {
  		font-size: 0;
  		width: 40rpx;
  		height: 40rpx;
  		/* #ifdef APP-NVUE */
  		border-radius: 40rpx;
  		/* #endif */
  		/* #ifndef APP-NVUE */
  		border-radius: 50%;
  		display: inline-flex;
  		box-sizing: border-box;
  		vertical-align: top;
  		/* #endif */
  		flex-direction: row;
  		align-items: center;
  		justify-content: center;
  		overflow: hidden;
  		position: relative;
  	}
  
  	/* #ifdef H5 || APP-VUE */
  	::v-deep .uni-switch-input {
  		margin-right: 0 !important;
  	}
  
  	/* #endif */
  
  	/* #ifdef APP-NVUE */
  	.uni-switch-input {
  		margin-right: 0 !important;
  	}
  
  	/* #endif */
  
  
  	/* #ifdef MP-WEIXIN */
  	.wx-switch-input {
  		margin-right: 0 !important;
  	}
  
  	/* #endif */
  
  	.tui-switch__check-mark {
  		width: 20rpx;
  		height: 40rpx;
  		border-bottom-style: solid;
  		border-bottom-width: 3px;
  		border-bottom-color: #FFFFFF;
  		border-right-style: solid;
  		border-right-width: 3px;
  		border-right-color: #FFFFFF;
  		transform: rotate(45deg) scale(0.5);
  		transform-origin: 54% 48%;
  		/* #ifndef APP-NVUE */
  		box-sizing: border-box;
  		/* #endif */
  	}
  
  	.tui-switch__hidden {
  		position: absolute;
  		top: 0;
  		left: 0;
  		opacity: 0;
  		z-index: 2;
  		/* #ifndef APP-NVUE */
  		width: 100%;
  		height: 100%;
  		border: 0 none;
  		-webkit-appearance: none;
  		-moz-appearance: none;
  		appearance: none;
  		/* #endif */
  
  		/* #ifdef APP-NVUE */
  		width: 100wx;
  		height: 100wx;
  		border-width: 0;
  		/* #endif */
  
  	}
  
  	/* #ifdef H5 */
  	.tui-switch__pevents {
  		pointer-events: none;
  	}
  
  	/* #endif */
  
  	.tui-switch__disabled {
  		opacity: 0.6;
  	}
  </style>