tn-radio-group.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="tn-radio-group-class tn-radio-group">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. import Emitter from '../../libs/utils/emitter.js'
  8. export default {
  9. mixins: [ Emitter ],
  10. name: 'tn-radio-group',
  11. props: {
  12. // 单选组的值,会选中值相同的选项
  13. value: {
  14. type: String,
  15. default: ''
  16. },
  17. // 是否禁用
  18. disabled: {
  19. type: Boolean,
  20. default: false
  21. },
  22. // 禁用点击标签进行选择
  23. disabledLabel: {
  24. type: Boolean,
  25. default: false
  26. },
  27. // 选择框的形状 square 方形 circle 圆形
  28. shape: {
  29. type: String,
  30. default: 'circle'
  31. },
  32. // 选中时的颜色
  33. activeColor: {
  34. type: String,
  35. default: '#01BEFF'
  36. },
  37. // 组件大小
  38. size: {
  39. type: Number,
  40. default: 34
  41. },
  42. // 每个radio占的宽度
  43. width: {
  44. type: String,
  45. default: 'auto'
  46. },
  47. // 是否换行
  48. wrap: {
  49. type: Boolean,
  50. default: false
  51. },
  52. // 图标大小
  53. iconSize: {
  54. type: Number,
  55. default: 20
  56. }
  57. },
  58. computed: {
  59. // 这里computed的变量,都是子组件tn-radio需要用到的,由于头条小程序的兼容性差异,子组件无法实时监听父组件参数的变化
  60. // 所以需要手动通知子组件,这里返回一个parentData变量,供watch监听,在其中去通知每一个子组件重新从父组件(tn-radio-group)
  61. // 拉取父组件新的变化后的参数
  62. parentData() {
  63. return [this.value, this.disabled, this.activeColor, this.size, this.disabledLabel, this.shape, this.iconSize, this.width, this.wrap]
  64. }
  65. },
  66. data() {
  67. return {
  68. }
  69. },
  70. watch: {
  71. // 当父组件中的子组件需要共享的参数发生了变化,手动通知子组件
  72. parentData() {
  73. if (this.children.length) {
  74. this.children.map(child => {
  75. // 判断子组件(tn-radio)如果有updateParentData方法的话,子组件重新从父组件拉取了最新的值
  76. typeof(child.updateParentData) === 'function' && child.updateParentData()
  77. })
  78. }
  79. }
  80. },
  81. created() {
  82. // 如果将children定义在data中,在微信小程序会造成循环引用而报错
  83. this.children = []
  84. },
  85. methods: {
  86. // 改方法由子组件tn-radio调用,当一个tn-radio被选中的时候,给父组件设置value值(通知其他tn-radio组件)
  87. setValue(value) {
  88. // 通过子组件传递过来的value值(此被选中的子组件内部已将parentValue设置等于value的值),将其他tn-radio设置未选中的状态
  89. this.children.map(child => {
  90. if (child.parentData.value !== value) child.parentData.value = ''
  91. })
  92. // 通过emit事件,设置父组件通过v-model双向绑定的值
  93. this.$emit('input', value)
  94. this.$emit('change', value)
  95. // 等待下一个周期再执行,因为this.$emit('input')作用于父组件,再反馈到子组件内部,需要时间
  96. // 由于头条小程序执行迟钝,故需要用几十毫秒的延时
  97. setTimeout(() => {
  98. // 将当前的值发送到 tn-form-item 进行校验
  99. this.dispatch('tn-form-item', 'on-form-change', value);
  100. }, 60)
  101. }
  102. }
  103. }
  104. </script>
  105. <style lang="scss" scoped>
  106. .tn-radio-group {
  107. /* #ifndef MP || APP-NVUE */
  108. display: inline-flex;
  109. flex-wrap: wrap;
  110. /* #endif */
  111. &::after {
  112. content: " ";
  113. display: table;
  114. clear: both;
  115. }
  116. }
  117. </style>