index.vue 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <view class="van-radio custom-class">
  3. <view v-if="labelPosition === 'left'" :class="'label-class ' + utils.bem('radio__label', [labelPosition, { disabled }])" @tap="onClickLabel">
  4. <slot />
  5. </view>
  6. <view class="van-radio__icon-wrap" :style="'font-size: ' + utils.addUnit(iconSize) + ';'" @tap="onChange">
  7. <slot v-if="useIconSlot" name="icon" />
  8. <van-icon
  9. v-else
  10. name="success"
  11. :class="utils.bem('radio__icon', [shape, { disabled, checked: value === name }])"
  12. :style="
  13. 'font-size: ' +
  14. utils.addUnit(iconSize) +
  15. ';' +
  16. (checkedColor && !disabled && value === name ? 'border-color:' + checkedColor + '; background-color:' + checkedColor + ';' : '')
  17. "
  18. custom-class="icon-class"
  19. :custom-style="'line-height: ' + utils.addUnit(iconSize) + ';font-size: .8em;display: block;'"
  20. />
  21. </view>
  22. <view v-if="labelPosition === 'right'" :class="'label-class ' + utils.bem('radio__label', [labelPosition, { disabled }])" @tap="onClickLabel">
  23. <slot />
  24. </view>
  25. </view>
  26. </template>
  27. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  28. <script>
  29. import { VantComponent } from '../common/component';
  30. export default {
  31. data() {
  32. return {};
  33. },
  34. field: true,
  35. '../radio-group/index': {
  36. name: 'radio-group',
  37. type: 'ancestor',
  38. current: 'radio'
  39. },
  40. classes: ['icon-class', 'label-class'],
  41. props: {
  42. name: null,
  43. value: null,
  44. disabled: Boolean,
  45. useIconSlot: Boolean,
  46. checkedColor: String,
  47. labelPosition: {
  48. type: String,
  49. default: 'right'
  50. },
  51. labelDisabled: Boolean,
  52. shape: {
  53. type: String,
  54. default: 'round'
  55. },
  56. iconSize: {
  57. type: null,
  58. default: 20
  59. }
  60. },
  61. methods: {
  62. emitChange(value) {
  63. const instance = this.parent || this;
  64. instance.$emit('input', value);
  65. instance.$emit('change', value);
  66. },
  67. onChange() {
  68. if (!this.disabled) {
  69. this.emitChange(this.name);
  70. }
  71. },
  72. onClickLabel() {
  73. const { disabled, labelDisabled, name } = this;
  74. if (!disabled && !labelDisabled) {
  75. this.emitChange(name);
  76. }
  77. }
  78. }
  79. };
  80. </script>
  81. <style>
  82. @import './index.css';
  83. </style>