162 lines
2.8 KiB
Vue
162 lines
2.8 KiB
Vue
<template>
|
|
<view class="uni-rate">
|
|
<view
|
|
:key="index"
|
|
:style="{ marginLeft: margin + 'px' }"
|
|
@tap="_onClick(index)"
|
|
class="uni-rate__icon"
|
|
v-for="(star, index) in stars"
|
|
>
|
|
<text
|
|
class="iconfont iconstar"
|
|
:style="{ color: isFill ? '#eee' : '#ececec' }"
|
|
></text>
|
|
<!-- #ifdef APP-NVUE -->
|
|
<view
|
|
:style="{
|
|
width: (star.activeWitch.replace('%', '') * size) / 100 + 'px'
|
|
}"
|
|
class="uni-rate__icon-on"
|
|
>
|
|
<text class="iconfont iconstar" :style="{ color: activeColor }"></text>
|
|
</view>
|
|
<!-- #endif -->
|
|
<!-- #ifndef APP-NVUE -->
|
|
<view
|
|
:style="{ width: star.activeWitch, top: -size / 2 - 1 + 'px' }"
|
|
class="uni-rate__icon-on"
|
|
>
|
|
<text class="iconfont iconstar" :style="{ color: activeColor }"></text>
|
|
</view>
|
|
<!-- #endif -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'rfRate',
|
|
props: {
|
|
isFill: {
|
|
// 星星的类型,是否镂空
|
|
type: [Boolean, String],
|
|
default: true
|
|
},
|
|
color: {
|
|
// 星星的颜色
|
|
type: String,
|
|
default: '#ececec'
|
|
},
|
|
activeColor: {
|
|
// 星星选中状态颜色
|
|
type: String,
|
|
default: '#ffca3e'
|
|
},
|
|
size: {
|
|
// 星星的大小
|
|
type: [Number, String],
|
|
default: 24
|
|
},
|
|
value: {
|
|
// 当前评分
|
|
type: [Number, String],
|
|
default: 0
|
|
},
|
|
index: {
|
|
// 当前评分
|
|
type: Number,
|
|
default: 1
|
|
},
|
|
max: {
|
|
// 最大评分
|
|
type: [Number, String],
|
|
default: 5
|
|
},
|
|
margin: {
|
|
// 星星的间距
|
|
type: [Number, String],
|
|
default: 0
|
|
},
|
|
disabled: {
|
|
// 是否可点击
|
|
type: [Boolean, String],
|
|
default: false
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
valueSync: ''
|
|
};
|
|
},
|
|
computed: {
|
|
stars() {
|
|
const value = this.valueSync ? this.valueSync : 0;
|
|
const starList = [];
|
|
const floorValue = Math.floor(value);
|
|
const ceilValue = Math.ceil(value);
|
|
|
|
for (let i = 0; i < this.max; i++) {
|
|
if (floorValue > i) {
|
|
starList.push({
|
|
activeWitch: '100%'
|
|
});
|
|
} else if (ceilValue - 1 === i) {
|
|
starList.push({
|
|
activeWitch: (value - floorValue) * 100 + '%'
|
|
});
|
|
} else {
|
|
starList.push({
|
|
activeWitch: '0'
|
|
});
|
|
}
|
|
}
|
|
return starList;
|
|
}
|
|
},
|
|
created() {
|
|
this.valueSync = Number(this.value);
|
|
},
|
|
methods: {
|
|
_onClick(index) {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
this.valueSync = index + 1;
|
|
this.$emit('change', {
|
|
value: this.valueSync,
|
|
index: this.index
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.uni-rate {
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
line-height: 0;
|
|
font-size: 0;
|
|
flex-direction: row;
|
|
}
|
|
.iconfont {
|
|
font-size: $font-lg + 4upx;
|
|
}
|
|
|
|
.uni-rate__icon {
|
|
position: relative;
|
|
line-height: 0;
|
|
font-size: 0;
|
|
}
|
|
|
|
.uni-rate__icon-on {
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
line-height: 1;
|
|
text-align: left;
|
|
}
|
|
</style>
|