微信小程序中的店铺评分组件及vue中用svg实现的

在微信小程序中,有遇到要展示店铺评分,或者是订单完成后对商品进行评价,用到了星星展示,查了下,在微信中无法使用svg实现图片,微信中只能将svg图片转成base64来显示,所以是在vue中使用的svg来实现评分

1.效果图

微信中的可以点击及显示,但是,显示的话,在4.2分,4点多分的时候,显示的是半颗星

vue中用的是svg实现,所以用的是占比的形式,可以有一点点的星

微信小程序中的店铺评分组件及vue中用svg实现的

2.微信实现店铺评分显示及商品评价星星展示

子组件index.wxml,可以动态的控制星星的大小

<!-- (size * stars.length + (size/2) * 4 + 20 )这里的话,是在可以点击的时候,加上了好评的字体的长度 --> <view> <view> <block wx:for="{{stars}}" wx:key="{{index}}"> <image src="/images/{{item == 0 ? 'grayStar':item}}.png" data-index="{{index}}" catchtap="computeScore"></image> </block> </view> <view wx:if="{{isClick}}"> <text wx:if="{{value=='0'}}">暂无评分</text> <text wx:elif="{{value=='1'}}">差评</text> <text wx:elif="{{value<'4'}}">中评</text> <text wx:else>好评</text> </view> </view>

子组件index.wxss

.starsBox{ display: flex; align-items: center; justify-content: flex-start; } .stars{ width: 150rpx; height: 50rpx; display: flex; align-items: center; justify-content: flex-start; } .stars image{ width: 30rpx; height: 30rpx; } .text{ color: #ccc; margin-left: 20rpx; }

子组件index.js

Component({ properties: { /* 显示有色星星的个数 */ value: { type: Number, value: 0, /* 监听value值的变化 */ observer: function (newVal, oldVal, changedPath) { this.init() } }, /* 设置星星大小 */ size: { type: Number, value: 30 }, /* 是否可点击,type为null表示值可以是任意类型 */ isClick: { type: null, value: false } }, attached() { /* 组件生命周期函数,在组件实例进入页面节点树时执行 */ this.init(); }, data: { stars: [0, 0, 0, 0, 0] }, methods: { init() { let star = this.properties.value; let stars = [0, 0, 0, 0, 0]; /* 图片名称,通过设置图片名称来动态的改变图片显示 */ for (let i = 0; i < Math.floor(star); i++) { stars[i] = 'star'; } if (star > Math.floor(star)) { stars[Math.floor(star)] = 'halfStar'; } for (let i = 0; i < stars.length; i++) { if (stars[i] == 0) { stars[i] = 'grayStar'; } } this.setData({ stars }) }, /* 可点击时,用于计算分数 */ computeScore(e) { let index = e.currentTarget.dataset.index; let isClick = this.data.isClick; if (isClick) { let score = index + 1; this.triggerEvent('compute', { score }); } } } })

3.父组件中引用

父组件index.wxml

<view> <view> <score value="{{shopGrade}}" size="46" isClick="true" bindcompute="computeGrade" /> </view> <view> <score value="{{shopGrade1}}" size="46" /> </view> </view>

父组件index.json

{ "usingComponents": { "score": "/component/score/index" } }

父组件index.js

data: { shopGrade: 0, shopGrade1: 4.6, }, /* 评分处理事件 */ computeGrade(e) { let score = e.detail.score; this.setData({ shopGrade: score }) },

4.vue中使用svg实现评分

首先在vue使用的index.html的模板文件中添加一个rem转换算法,因为我后面用的单位是rem

/* 在头部添加 */ <script type="text/javascript"> document.getElementsByTagName("html")[0].style.fontSize = 100 / 750 * window.screen.width + "px"; </script>

然后添加svg.vue文件,这个svg文件可以自己找图片生成,并设置对应的id

<template> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <symbol viewBox="0 0 32 32"> <path d="M16 26.382l-8.16 4.992c-1.5 0.918-2.382 0.264-1.975-1.435l2.226-9.303-7.269-6.218c-1.337-1.143-0.987-2.184 0.755-2.322l9.536-0.758 3.667-8.835c0.674-1.624 1.772-1.613 2.442 0l3.667 8.835 9.536 0.758c1.753 0.139 2.082 1.187 0.755 2.322l-7.269 6.218 2.226 9.303c0.409 1.71-0.485 2.347-1.975 1.435l-8.16-4.992z"> </path> </symbol> </defs> </svg> </template> <script></script> <style></style>

rating.vue文件引用svg.vue

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/80fda5c770fb4ac2b672b5a67df50917.html