index.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <view class="van-rate custom-class" @touchmove="onTouchMove">
  3. <view class="van-rate__item" :style="'padding-right: ' + (index !== count - 1 ? utils.addUnit(gutter) : '')" v-for="(item, index) in innerCountArray" :key="index">
  4. <van-icon
  5. :name="index + 1 <= innerValue ? icon : voidIcon"
  6. class="van-rate__icon"
  7. :style="'font-size: ' + utils.addUnit(size)"
  8. custom-class="icon-class"
  9. :data-score="index"
  10. :color="disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor"
  11. @click="onSelect($event, { score: index })"
  12. />
  13. <van-icon
  14. v-if="allowHalf"
  15. :name="index + 0.5 <= innerValue ? icon : voidIcon"
  16. :class="utils.bem('rate__icon', ['half'])"
  17. :style="'font-size: ' + utils.addUnit(size)"
  18. custom-class="icon-class"
  19. :data-score="index - 0.5"
  20. :color="disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor"
  21. @click="onSelect($event, { score: index - 0.5 })"
  22. />
  23. </view>
  24. </view>
  25. </template>
  26. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  27. <script>
  28. 'use strict';
  29. var __assign =
  30. (this && this.__assign) ||
  31. function () {
  32. __assign =
  33. Object.assign ||
  34. function (t) {
  35. for (var s, i = 1, n = arguments.length; i < n; i++) {
  36. s = arguments[i];
  37. for (var p in s) {
  38. if (Object.prototype.hasOwnProperty.call(s, p)) {
  39. t[p] = s[p];
  40. }
  41. }
  42. }
  43. return t;
  44. };
  45. return __assign.apply(this, arguments);
  46. };
  47. Object.defineProperty(exports, '__esModule', {
  48. value: true
  49. });
  50. var component_1 = require('../common/component');
  51. var version_1 = require('../common/version');
  52. component_1.VantComponent({
  53. field: true,
  54. classes: ['icon-class'],
  55. props: {
  56. value: {
  57. type: Number,
  58. observer: function (value) {
  59. if (value !== this.innerValue) {
  60. this.setData({
  61. innerValue: value
  62. });
  63. }
  64. }
  65. },
  66. readonly: Boolean,
  67. disabled: Boolean,
  68. allowHalf: Boolean,
  69. size: null,
  70. icon: {
  71. type: String,
  72. value: 'star'
  73. },
  74. voidIcon: {
  75. type: String,
  76. value: 'star-o'
  77. },
  78. color: {
  79. type: String,
  80. value: '#ffd21e'
  81. },
  82. voidColor: {
  83. type: String,
  84. value: '#c7c7c7'
  85. },
  86. disabledColor: {
  87. type: String,
  88. value: '#bdbdbd'
  89. },
  90. count: {
  91. type: Number,
  92. value: 5,
  93. observer: function (value) {
  94. this.setData({
  95. innerCountArray: Array.from({
  96. length: value
  97. })
  98. });
  99. }
  100. },
  101. gutter: null,
  102. touchable: {
  103. type: Boolean,
  104. value: true
  105. }
  106. },
  107. data: {
  108. innerValue: 0,
  109. innerCountArray: Array.from({
  110. length: 5
  111. })
  112. },
  113. methods: {
  114. onSelect: function (event) {
  115. var that = this;
  116. var data = this;
  117. var score = event.currentTarget.dataset.score;
  118. if (!data.disabled && !data.readonly) {
  119. this.setData({
  120. innerValue: score + 1
  121. });
  122. if (version_1.canIUseModel()) {
  123. this.setData({
  124. value: score + 1
  125. });
  126. }
  127. this.$nextTick(function () {
  128. that.$emit('input', score + 1);
  129. that.$emit('change', score + 1);
  130. });
  131. }
  132. },
  133. onTouchMove: function (event) {
  134. var that = this;
  135. var touchable = this.touchable;
  136. if (!touchable) {
  137. return;
  138. }
  139. var clientX = event.touches[0].clientX;
  140. this.getRect('.van-rate__icon', true).then(function (list) {
  141. var target = list
  142. .sort(function (item) {
  143. return item.right - item.left;
  144. })
  145. .find(function (item) {
  146. return clientX >= item.left && clientX <= item.right;
  147. });
  148. if (target != null) {
  149. that.onSelect(
  150. __assign(__assign({}, event), {
  151. currentTarget: target
  152. })
  153. );
  154. }
  155. });
  156. }
  157. }
  158. });
  159. </script>
  160. <style>
  161. @import './index.css';
  162. </style>