star-rating.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view class="star-rating">
  3. <view class="star-rating-box" @touchstart="fun" @touchmove.stop.prevent="fun">
  4. <image v-for="(item, i) in max" :key="i" class="icon-start" :src="(i + 1) | getSrc(score)" mode=""></image>
  5. </view>
  6. <text class="star-rating-title">{{ title }}</text>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'star-rating',
  12. data() {
  13. return {
  14. iconStartSrcList: [
  15. '/static/imgs/star-rating/delivery_icon_star_empty.png',
  16. '/static/imgs/star-rating/delivery_icon_star_disable.png',
  17. '/static/imgs/star-rating/delivery_icon_star_active.png'
  18. ],
  19. title: '',
  20. width: 0
  21. }
  22. },
  23. props: {
  24. max: {
  25. type: Number,
  26. default: 5
  27. },
  28. name: {
  29. type: String,
  30. default: ''
  31. },
  32. score: {
  33. type: Number,
  34. default: 0
  35. }
  36. },
  37. methods: {
  38. fun(e) {
  39. let score = Math.ceil(((e.changedTouches[0].pageX - e.currentTarget.offsetLeft) / this.width) * 5)
  40. if (score >= 5) score = 5
  41. if (score <= 0) score = 0
  42. this.$emit('changeScore', {
  43. name: this.name,
  44. score
  45. })
  46. },
  47. getDescBox() {
  48. uni
  49. .createSelectorQuery()
  50. .in(this)
  51. .select('.star-rating-box')
  52. .boundingClientRect(result => {
  53. if (result) {
  54. this.width = result.width
  55. } else {
  56. this.getDescBox()
  57. }
  58. })
  59. .exec()
  60. }
  61. },
  62. mounted() {
  63. this.$nextTick(() => {
  64. this.getDescBox()
  65. })
  66. },
  67. filters: {
  68. getSrc: function (i, score) {
  69. if (score == 0) return '/static/imgs/star-rating/delivery_icon_star_empty.png'
  70. if (score < i) return '/static/imgs/star-rating/delivery_icon_star_disable.png'
  71. if (score >= i) return '/static/imgs/star-rating/delivery_icon_star_active.png'
  72. }
  73. },
  74. watch: {
  75. score(val) {
  76. if (val == 0) this.title = ''
  77. if (val == 1) this.title = '非常差'
  78. if (val == 2) this.title = '差'
  79. if (val == 3) this.title = '一般'
  80. if (val == 4) this.title = '满意'
  81. if (val == 5) this.title = '非常满意'
  82. }
  83. }
  84. }
  85. </script>
  86. <style lang="scss">
  87. .star-rating {
  88. display: flex;
  89. align-items: center;
  90. .icon-start {
  91. width: 30rpx;
  92. height: 30rpx;
  93. margin: 0 6rpx;
  94. }
  95. .star-rating-title {
  96. padding-left: 30rpx;
  97. color: #999;
  98. font-size: 24rpx;
  99. }
  100. }
  101. </style>