uv-radio-group.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view
  3. class="uv-radio-group"
  4. :class="bemClass"
  5. :style="[$uv.addStyle(this.customStyle)]"
  6. >
  7. <slot></slot>
  8. </view>
  9. </template>
  10. <script>
  11. import mpMixin from '@/uni_modules/uv-ui-tools/libs/mixin/mpMixin.js'
  12. import mixin from '@/uni_modules/uv-ui-tools/libs/mixin/mixin.js'
  13. import props from './props.js';
  14. /**
  15. * radioRroup 单选框父组件
  16. * @description 单选框用于有一个选择,用户只能选择其中一个的场景。搭配uv-radio使用
  17. * @tutorial https://www.uvui.cn/components/radio.html
  18. * @property {String | Number | Boolean} value 绑定的值
  19. * @property {Boolean} disabled 是否禁用所有radio(默认 false )
  20. * @property {String} shape 外观形状,shape-方形,circle-圆形(默认 circle )
  21. * @property {String} activeColor 选中时的颜色,应用到所有子Radio组件(默认 '#2979ff' )
  22. * @property {String} inactiveColor 未选中的颜色 (默认 '#c8c9cc' )
  23. * @property {String} name 标识符
  24. * @property {String | Number} size 组件整体的大小,单位px(默认 18 )
  25. * @property {String} placement 布局方式,row-横向,column-纵向 (默认 'row' )
  26. * @property {String} label 文本
  27. * @property {String} labelColor label的颜色 (默认 '#303133' )
  28. * @property {String | Number} labelSize label的字体大小,px单位 (默认 14 )
  29. * @property {Boolean} labelDisabled 是否禁止点击文本操作checkbox(默认 false )
  30. * @property {String} iconColor 图标颜色 (默认 '#ffffff' )
  31. * @property {String | Number} iconSize 图标的大小,单位px (默认 12 )
  32. * @property {Boolean} borderBottom placement为row时,是否显示下边框 (默认 false )
  33. * @property {String} iconPlacement 图标与文字的对齐方式 (默认 'left' )
  34. * @property {Object} customStyle 组件的样式,对象形式
  35. * @event {Function} change 任一个radio状态发生变化时触发
  36. * @example <uv-radio-group v-model="value"></uv-radio-group>
  37. */
  38. export default {
  39. name: 'uv-radio-group',
  40. mixins: [mpMixin, mixin, props],
  41. computed: {
  42. // 这里computed的变量,都是子组件uv-radio需要用到的,由于头条小程序的兼容性差异,子组件无法实时监听父组件参数的变化
  43. // 所以需要手动通知子组件,这里返回一个parentData变量,供watch监听,在其中去通知每一个子组件重新从父组件(uv-radio-group)
  44. // 拉取父组件新的变化后的参数
  45. parentData() {
  46. const value = this.value || this.modelValue;
  47. return [value, this.disabled, this.inactiveColor, this.activeColor, this.size, this.labelDisabled, this.shape,
  48. this.iconSize, this.borderBottom, this.placement]
  49. },
  50. bemClass() {
  51. // this.bem为一个computed变量,在mixin中
  52. return this.bem('radio-group', ['placement'])
  53. },
  54. },
  55. watch: {
  56. // 当父组件需要子组件需要共享的参数发生了变化,手动通知子组件
  57. parentData() {
  58. if (this.children.length) {
  59. this.children.map(child => {
  60. // 判断子组件(uv-radio)如果有init方法的话,就就执行(执行的结果是子组件重新从父组件拉取了最新的值)
  61. typeof(child.init) === 'function' && child.init()
  62. })
  63. }
  64. },
  65. },
  66. data() {
  67. return {
  68. }
  69. },
  70. created() {
  71. this.children = []
  72. },
  73. methods: {
  74. // 将其他的radio设置为未选中的状态
  75. unCheckedOther(childInstance) {
  76. this.children.map(child => {
  77. // 所有子radio中,被操作组件实例的checked的值无需修改
  78. if (childInstance !== child) {
  79. child.checked = false
  80. }
  81. })
  82. const {
  83. name
  84. } = childInstance
  85. // 通过emit事件,设置父组件通过v-model双向绑定的值
  86. // #ifdef VUE2
  87. this.$emit('input', name)
  88. // #endif
  89. // #ifdef VUE3
  90. this.$emit('update:modelValue',name)
  91. // #endif
  92. // 发出事件
  93. this.$emit('change', name)
  94. },
  95. }
  96. }
  97. </script>
  98. <style lang="scss" scoped>
  99. @import '@/uni_modules/uv-ui-tools/libs/css/components.scss';
  100. .uv-radio-group {
  101. flex: 1;
  102. &--row {
  103. @include flex;
  104. flex-wrap: wrap;
  105. }
  106. &--column {
  107. @include flex(column);
  108. }
  109. }
  110. </style>