12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <uni-shadow-root class="vant-rate-index"><view class="van-rate custom-class" @touchmove="onTouchMove">
- <view v-for="(item,index) in (count)" :key="item.index" class="van-rate__item" :style="'font-size: '+(size)+'px;'">
- <van-icon :name="index + 1 <= innerValue ? icon : voidIcon" class="van-rate__icon" custom-class="icon-class" :data-score="index" :color="disabled ? disabledColor : index + 1 <= innerValue ? color : voidColor" @click="onSelect"></van-icon>
-
- <van-icon v-if="allowHalf" :name="index + 0.5 <= innerValue ? icon : voidIcon" :class="utils.bem('rate__icon', ['half'])" custom-class="icon-class" :data-score="index - 0.5" :color="disabled ? disabledColor : index + 0.5 <= innerValue ? color : voidColor" @click="onSelect"></van-icon>
- </view>
- </view></uni-shadow-root>
- </template>
- <wxs src="../wxs/utils.wxs" module="utils"></wxs>
- <script>
- import VanIcon from '../icon/index.vue'
- global['__wxVueOptions'] = {components:{'van-icon': VanIcon}}
-
- global['__wxRoute'] = 'vant/rate/index'
- import { VantComponent } from '../common/component';
- VantComponent({
- field: true,
- classes: ['icon-class'],
- props: {
- value: Number,
- readonly: Boolean,
- disabled: Boolean,
- allowHalf: Boolean,
- size: {
- type: Number,
- value: 20
- },
- icon: {
- type: String,
- value: 'star'
- },
- voidIcon: {
- type: String,
- value: 'star-o'
- },
- color: {
- type: String,
- value: '#ffd21e'
- },
- voidColor: {
- type: String,
- value: '#c7c7c7'
- },
- disabledColor: {
- type: String,
- value: '#bdbdbd'
- },
- count: {
- type: Number,
- value: 5
- }
- },
- data: {
- innerValue: 0
- },
- watch: {
- value(value) {
- if (value !== this.data.innerValue) {
- this.set({ innerValue: value });
- }
- }
- },
- methods: {
- onSelect(event) {
- const { data } = this;
- const { score } = event.currentTarget.dataset;
- if (!data.disabled && !data.readonly) {
- this.set({ innerValue: score + 1 });
- this.$emit('input', score + 1);
- this.$emit('change', score + 1);
- }
- },
- onTouchMove(event) {
- const { clientX, clientY } = event.touches[0];
- this.getRect('.van-rate__icon', true).then((list) => {
- const target = list
- .sort(item => item.right - item.left)
- .find(item => clientX >= item.left &&
- clientX <= item.right &&
- clientY >= item.top &&
- clientY <= item.bottom);
- if (target != null) {
- this.onSelect(Object.assign({}, event, { currentTarget: target }));
- }
- });
- }
- }
- });
- export default global['__wxComponents']['vant/rate/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.van-rate{-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;display:inline-block;padding:0 2px}.van-rate__icon{display:block;height:1em}.van-rate__icon--half{position:absolute;top:0;left:2px;width:.5em;overflow:hidden}
- </style>
|