index.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  28. <script>
  29. 'use strict';
  30. Object.defineProperty(exports, '__esModule', {
  31. value: true
  32. });
  33. var component_1 = require('../common/component');
  34. component_1.VantComponent({
  35. field: true,
  36. relation: {
  37. name: 'radio-group',
  38. type: 'ancestor',
  39. current: 'radio'
  40. },
  41. classes: ['icon-class', 'label-class'],
  42. props: {
  43. name: null,
  44. value: null,
  45. disabled: Boolean,
  46. useIconSlot: Boolean,
  47. checkedColor: String,
  48. labelPosition: {
  49. type: String,
  50. value: 'right'
  51. },
  52. labelDisabled: Boolean,
  53. shape: {
  54. type: String,
  55. value: 'round'
  56. },
  57. iconSize: {
  58. type: null,
  59. value: 20
  60. }
  61. },
  62. methods: {
  63. emitChange: function (value) {
  64. var instance = this.parent || this;
  65. instance.$emit('input', value);
  66. instance.$emit('change', value);
  67. },
  68. onChange: function () {
  69. if (!this.disabled) {
  70. this.emitChange(this.name);
  71. }
  72. },
  73. onClickLabel: function () {
  74. var _a = this;
  75. var disabled = _a.disabled;
  76. var labelDisabled = _a.labelDisabled;
  77. var name = _a.name;
  78. if (!disabled && !labelDisabled) {
  79. this.emitChange(name);
  80. }
  81. }
  82. }
  83. });
  84. </script>
  85. <style>
  86. @import './index.css';
  87. </style>