Vue封装一个星星评分组件

​
<template>
  <div class="rate">
    <span v-if="showText" class="text">{{curScore||score}}分</span>
    <div class="star-wrap">
      <i
        v-for="(i, index) in 5"
        :key="index"
        @mouseenter="disabled ? '' : curScore=i"
        @mouseleave="disabled ? '' : curScore=''"
        @click="disabled ? '' : setScore(i)"
        :class="getClass(i)"
      >
      </i>
    </div>
  </div>
</template>
<script>
export default {
  name: 'MyRate',
  props: {
    // 分数,默认0,保留一位小数                                             
    score: {
      type: Number,
      default: 0
    },
    // 是否只读,默认false,鼠标点击可以打分
    disabled: {
      type: Boolean,
      default: false
    },
    // 是否显示分数,默认false
    showText: {
      type: Boolean,
      default: false
    }
  },
  data () {
    return {
      curScore: '',//星星的数量
    }
  },
  methods: {
    getClass (i) {
      if (this.curScore === '') {
        return i <= this.score ? 'icon-star' : 'icon-star-o'
      } else {
        return i <= this.curScore ? 'icon-star' : 'icon-star-o'
      }
    },
    setScore (i) {//如果为true的话 执行setScore 对score 进行双向绑定
      this.$emit('update:score', i)//使用`.sync`修饰符,对score 进行双向绑定
    }
  }
}
</script>
<style lang="less" scoped>
.rate{
  .text{
    font-size: 18px;
    color: #ff7f2c;
    font-weight: bold;
  }
  .star-wrap{
    line-height: 0;
    .icon-star-o{
      position: relative;
      width:18px;
      height: 18px;
      line-height: 0;
      display: inline-block;
      margin-right: 2px;
      background: url('../../static/icon-star-gray.png') 0 0 ~'/' auto 100%;
      .icon-star{
        position: absolute;
        left:0;
        top:0;
      }
    }
    .icon-star{
      width: 18px;
      height: 18px;
      line-height: 0;
      display: inline-block;
      margin-right: 2px;
      background: url('../../static/icon-star-yellow.png') 0 0 ~'/' auto 100%;
    }
    i:last-child{
      margin-right: 0px;
    }
  }
}
</style>

​
<template>
  <div id="">
   <h3>鼠标点击评分,显示数字:</h3>

    <start :score.sync="curScore" showText></start> 

  </div>
</template>

<script>
import start from "./start"
export default {
name:"",
components:{
start
},
data() {
return {
  curScore:3
}
}
</script>

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值