index.vue 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view
  3. :class="'custom-class ' + utils.bem('switch', { on: value === activeValue, disabled })"
  4. :style="'font-size: ' + size + '; ' + ((checked ? activeColor : inactiveColor) ? 'background-color: ' + (checked ? activeColor : inactiveColor) : '')"
  5. @tap="onClick"
  6. >
  7. <view class="van-switch__node node-class">
  8. <van-loading v-if="loading" :color="loadingColor" custom-class="van-switch__loading" />
  9. </view>
  10. </view>
  11. </template>
  12. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  13. <script>
  14. 'use strict';
  15. Object.defineProperty(exports, '__esModule', {
  16. value: true
  17. });
  18. var component_1 = require('../common/component');
  19. var color_1 = require('../common/color');
  20. component_1.VantComponent({
  21. field: true,
  22. classes: ['node-class'],
  23. props: {
  24. checked: {
  25. type: null,
  26. observer: function (value) {
  27. var loadingColor = this.getLoadingColor(value);
  28. this.setData({
  29. value: value,
  30. loadingColor: loadingColor
  31. });
  32. }
  33. },
  34. loading: Boolean,
  35. disabled: Boolean,
  36. activeColor: String,
  37. inactiveColor: String,
  38. size: {
  39. type: String,
  40. value: '30px'
  41. },
  42. activeValue: {
  43. type: null,
  44. value: true
  45. },
  46. inactiveValue: {
  47. type: null,
  48. value: false
  49. }
  50. },
  51. created: function () {
  52. var value = this.checked;
  53. var loadingColor = this.getLoadingColor(value);
  54. this.setData({
  55. value: value,
  56. loadingColor: loadingColor
  57. });
  58. },
  59. methods: {
  60. getLoadingColor: function (checked) {
  61. var _a = this;
  62. var activeColor = _a.activeColor;
  63. var inactiveColor = _a.inactiveColor;
  64. return checked ? activeColor || color_1.BLUE : inactiveColor || color_1.GRAY_DARK;
  65. },
  66. onClick: function () {
  67. var _a = this;
  68. var activeValue = _a.activeValue;
  69. var inactiveValue = _a.inactiveValue;
  70. if (!this.disabled && !this.loading) {
  71. var checked = this.checked === activeValue;
  72. var value = checked ? inactiveValue : activeValue;
  73. this.$emit('input', value);
  74. this.$emit('change', value);
  75. }
  76. }
  77. }
  78. });
  79. </script>
  80. <style>
  81. @import './index.css';
  82. </style>