index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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/dist/wxs/utils.wxs"></script>
  27. <script>
  28. import { VantComponent } from '../common/component';
  29. import { canIUseModel } from '../common/version';
  30. export default {
  31. data() {
  32. return {
  33. innerValue: 0,
  34. innerCountArray: Array.from({
  35. length: 5
  36. }),
  37. valueClone: 0
  38. };
  39. },
  40. field: true,
  41. classes: ['icon-class'],
  42. props: {
  43. value: {
  44. type: Number
  45. },
  46. readonly: Boolean,
  47. disabled: Boolean,
  48. allowHalf: Boolean,
  49. size: null,
  50. icon: {
  51. type: String,
  52. default: 'star'
  53. },
  54. voidIcon: {
  55. type: String,
  56. default: 'star-o'
  57. },
  58. color: {
  59. type: String,
  60. default: '#ffd21e'
  61. },
  62. voidColor: {
  63. type: String,
  64. default: '#c7c7c7'
  65. },
  66. disabledColor: {
  67. type: String,
  68. default: '#bdbdbd'
  69. },
  70. count: {
  71. type: Number,
  72. default: 5
  73. },
  74. gutter: null,
  75. touchable: {
  76. type: Boolean,
  77. default: true
  78. }
  79. },
  80. methods: {
  81. onSelect(event, _dataset) {
  82. /* ---处理dataset begin--- */
  83. this.handleDataset(event, _dataset);
  84. /* ---处理dataset end--- */
  85. const { data } = this;
  86. const { score } = event.currentTarget.dataset;
  87. if (!data.disabled && !data.readonly) {
  88. this.setData({
  89. innerValue: score + 1
  90. });
  91. if (canIUseModel()) {
  92. this.setData({
  93. valueClone: score + 1
  94. });
  95. }
  96. this.$nextTick(() => {
  97. this.$emit('input', score + 1);
  98. this.$emit('change', score + 1);
  99. });
  100. }
  101. },
  102. onTouchMove(event) {
  103. const { touchable } = this;
  104. if (!touchable) {
  105. return;
  106. }
  107. const { clientX } = event.touches[0];
  108. this.getRect('.van-rate__icon', true).then((list) => {
  109. const target = list.sort((item) => item.right - item.left).find((item) => clientX >= item.left && clientX <= item.right);
  110. if (target != null) {
  111. this.onSelect(
  112. Object.assign(Object.assign({}, event), {
  113. currentTarget: target
  114. })
  115. );
  116. }
  117. });
  118. }
  119. },
  120. watch: {
  121. value: {
  122. handler: function (value) {
  123. this.valueClone = this.clone(this.value);
  124. if (value !== this.innerValue) {
  125. this.setData({
  126. innerValue: value
  127. });
  128. }
  129. },
  130. immediate: true
  131. },
  132. count: {
  133. handler: function (value) {
  134. this.setData({
  135. innerCountArray: Array.from({
  136. length: value
  137. })
  138. });
  139. },
  140. immediate: true
  141. }
  142. }
  143. };
  144. </script>
  145. <style>
  146. @import './index.css';
  147. </style>