u-checkbox.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <template>
  2. <view class="u-checkbox" :style="[checkboxStyle]">
  3. <view class="u-checkbox__icon-wrap" @tap="toggle" :class="[iconClass]" :style="[iconStyle]">
  4. <u-icon class="u-checkbox__icon-wrap__icon" name="checkbox-mark" :size="checkboxIconSize" :color="iconColor"/>
  5. </view>
  6. <view class="u-checkbox__label" @tap="onClickLabel" :style="{
  7. fontSize: $u.addUnit(labelSize)
  8. }">
  9. <slot />
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. /**
  15. * checkbox 复选框
  16. * @description 该组件需要搭配checkboxGroup组件使用,以便用户进行操作时,获得当前复选框组的选中情况。
  17. * @tutorial https://www.uviewui.com/components/checkbox.html
  18. * @property {String Number} icon-size 图标大小,单位rpx(默认20)
  19. * @property {String Number} label-size label字体大小,单位rpx(默认28)
  20. * @property {String Number} name checkbox组件的标示符
  21. * @property {String} shape 形状,见官网说明(默认circle)
  22. * @property {Boolean} disabled 是否禁用
  23. * @property {Boolean} label-disabled 是否禁止点击文本操作checkbox
  24. * @property {String} active-color 选中时的颜色,如设置CheckboxGroup的active-color将失效
  25. * @event {Function} change 某个checkbox状态发生变化时触发,回调为一个对象
  26. * @example <u-checkbox v-model="checked" :disabled="false">天涯</u-checkbox>
  27. */
  28. export default {
  29. name: "u-checkbox",
  30. props: {
  31. // checkbox的名称
  32. name: {
  33. type: [String, Number],
  34. default: ''
  35. },
  36. // 形状,square为方形,circle为原型
  37. shape: {
  38. type: String,
  39. default: ''
  40. },
  41. // 是否为选中状态
  42. value: {
  43. type: Boolean,
  44. default: false
  45. },
  46. // 是否禁用
  47. disabled: {
  48. type: [String, Boolean],
  49. default: ''
  50. },
  51. // 是否禁止点击提示语选中复选框
  52. labelDisabled: {
  53. type: [String, Boolean],
  54. default: ''
  55. },
  56. // 选中状态下的颜色,如设置此值,将会覆盖checkboxGroup的activeColor值
  57. activeColor: {
  58. type: String,
  59. default: ''
  60. },
  61. // 图标的大小,单位rpx
  62. iconSize: {
  63. type: [String, Number],
  64. default: ''
  65. },
  66. // label的字体大小,rpx单位
  67. labelSize: {
  68. type: [String, Number],
  69. default: ''
  70. },
  71. // 组件的整体大小
  72. size: {
  73. type: [String, Number],
  74. default: ''
  75. },
  76. },
  77. data() {
  78. return {
  79. parentDisabled: false,
  80. newParams: {},
  81. };
  82. },
  83. created() {
  84. // 支付宝小程序不支持provide/inject,所以使用这个方法获取整个父组件,在created定义,避免循环应用
  85. this.parent = this.$u.$parent.call(this, 'u-checkbox-group');
  86. // 如果存在u-checkbox-group,将本组件的this塞进父组件的children中
  87. this.parent && this.parent.children.push(this);
  88. },
  89. computed: {
  90. // 是否禁用,如果父组件u-checkbox-group禁用的话,将会忽略子组件的配置
  91. isDisabled() {
  92. return this.disabled !== '' ? this.disabled : this.parent ? this.parent.disabled : false;
  93. },
  94. // 是否禁用label点击
  95. isLabelDisabled() {
  96. return this.labelDisabled !== '' ? this.labelDisabled : this.parent ? this.parent.labelDisabled : false;
  97. },
  98. // 组件尺寸,对应size的值,默认值为34rpx
  99. checkboxSize() {
  100. return this.size ? this.size : (this.parent ? this.parent.size : 34);
  101. },
  102. // 组件的勾选图标的尺寸,默认20
  103. checkboxIconSize() {
  104. return this.iconSize ? this.iconSize : (this.parent ? this.parent.iconSize : 20);
  105. },
  106. // 组件选中激活时的颜色
  107. elActiveColor() {
  108. return this.activeColor ? this.activeColor : (this.parent ? this.parent.activeColor : 'primary');
  109. },
  110. // 组件的形状
  111. elShape() {
  112. return this.shape ? this.shape : (this.parent ? this.parent.shape : 'square');
  113. },
  114. iconStyle() {
  115. let style = {};
  116. // 既要判断是否手动禁用,还要判断用户v-model绑定的值,如果绑定为false,那么也无法选中
  117. if (this.elActiveColor && this.value && !this.isDisabled) {
  118. style.borderColor = this.elActiveColor; // 源代码
  119. style.backgroundColor = this.elActiveColor;
  120. }
  121. style.borderColor = '#A8A7A7'; // 固定边框颜色
  122. style.width = this.$u.addUnit(this.checkboxSize);
  123. style.height = this.$u.addUnit(this.checkboxSize);
  124. return style;
  125. },
  126. // checkbox内部的勾选图标,如果选中状态,为白色,否则为透明色即可
  127. iconColor() {
  128. return this.value ? '#ffffff' : 'transparent';
  129. },
  130. iconClass() {
  131. let classes = [];
  132. classes.push('u-checkbox__icon-wrap--' + this.elShape);
  133. if (this.value == true) classes.push('u-checkbox__icon-wrap--checked');
  134. if (this.isDisabled) classes.push('u-checkbox__icon-wrap--disabled');
  135. if (this.value && this.isDisabled) classes.push('u-checkbox__icon-wrap--disabled--checked');
  136. // 支付宝小程序无法动态绑定一个数组类名,否则解析出来的结果会带有",",而导致失效
  137. return classes.join(' ');
  138. },
  139. checkboxStyle() {
  140. let style = {};
  141. if(this.parent && this.parent.width) {
  142. style.width = this.parent.width;
  143. // #ifdef MP
  144. // 各家小程序因为它们特殊的编译结构,使用float布局
  145. style.float = 'left';
  146. // #endif
  147. // #ifndef MP
  148. // H5和APP使用flex布局
  149. style.flex = `0 0 ${this.parent.width}`;
  150. // #endif
  151. }
  152. if(this.parent && this.parent.wrap) {
  153. style.width = '100%';
  154. // #ifndef MP
  155. // H5和APP使用flex布局,将宽度设置100%,即可自动换行
  156. style.flex = '0 0 100%';
  157. // #endif
  158. }
  159. return style;
  160. }
  161. },
  162. methods: {
  163. onClickLabel() {
  164. if (!this.isLabelDisabled && !this.isDisabled) {
  165. this.setValue();
  166. }
  167. },
  168. toggle() {
  169. if (!this.isDisabled) {
  170. this.setValue();
  171. }
  172. },
  173. emitEvent() {
  174. this.$emit('change', {
  175. value: !this.value,
  176. name: this.name
  177. })
  178. // 执行父组件u-checkbox-group的事件方法
  179. // 等待下一个周期再执行,因为this.$emit('input')作用于父组件,再反馈到子组件内部,需要时间
  180. setTimeout(() => {
  181. if(this.parent && this.parent.emitEvent) this.parent.emitEvent();
  182. }, 80);
  183. },
  184. // 设置input的值,这里通过input事件,设置通过v-model绑定的组件的值
  185. setValue() {
  186. // 判断是否超过了可选的最大数量
  187. let checkedNum = 0;
  188. if(this.parent && this.parent.children) {
  189. // 只要父组件的某一个子元素的value为true,就加1(已有的选中数量)
  190. this.parent.children.map(val => {
  191. if (val.value) checkedNum++;
  192. })
  193. }
  194. // 如果原来为选中状态,那么可以取消
  195. if (this.value == true) {
  196. this.emitEvent();
  197. this.$emit('input', !this.value);
  198. } else {
  199. // 如果超出最多可选项,提示
  200. if(this.parent && checkedNum >= this.parent.max) {
  201. return this.$u.toast(`最多可选${this.parent.max}项`);
  202. }
  203. // 如果原来为未选中状态,需要选中的数量少于父组件中设置的max值,才可以选中
  204. this.emitEvent();
  205. this.$emit('input', !this.value);
  206. }
  207. }
  208. }
  209. };
  210. </script>
  211. <style lang="scss" scoped>
  212. @import "../../libs/css/style.components.scss";
  213. .u-checkbox {
  214. /* #ifndef APP-NVUE */
  215. display: inline-flex;
  216. /* #endif */
  217. align-items: center;
  218. overflow: hidden;
  219. user-select: none;
  220. line-height: 1.8;
  221. &__icon-wrap {
  222. color: $u-content-color;
  223. flex: none;
  224. display: -webkit-flex;
  225. @include vue-flex;
  226. align-items: center;
  227. justify-content: center;
  228. box-sizing: border-box;
  229. width: 42rpx;
  230. height: 42rpx;
  231. color: transparent;
  232. text-align: center;
  233. transition-property: color, border-color, background-color;
  234. font-size: 20px;
  235. border: 1px solid #c8c9cc;
  236. transition-duration: 0.2s;
  237. /* #ifdef MP-TOUTIAO */
  238. // 头条小程序兼容性问题,需要设置行高为0,否则图标偏下
  239. &__icon {
  240. line-height: 0;
  241. }
  242. /* #endif */
  243. &--circle {
  244. border-radius: 100%;
  245. }
  246. &--square {
  247. border-radius: 6rpx;
  248. }
  249. &--checked {
  250. color: #fff;
  251. background-color: $u-type-primary;
  252. border-color: $u-type-primary;
  253. }
  254. &--disabled {
  255. background-color: #ebedf0;
  256. border-color: #c8c9cc;
  257. }
  258. &--disabled--checked {
  259. color: #c8c9cc !important;
  260. }
  261. }
  262. &__label {
  263. word-wrap: break-word;
  264. margin-left: 10rpx;
  265. margin-right: 24rpx;
  266. color: $u-content-color;
  267. font-size: 30rpx;
  268. &--disabled {
  269. color: #c8c9cc;
  270. }
  271. }
  272. }
  273. </style>