微信小程序评分组件 wxapp multiple rate component
git clone https://github.com/simsir-lin/multiple-rate-wxapp.git 预览
打开微信web开发者工具,'本地小程序项目 - 添加项目',项目目录选择为 multiple-rate-wxapp 的目录就可以了,添加项目后就可以进行组件源码的查看和预览demo了。使用
将 multiple-rate-wxapp 目录下的components文件夹下的multiple-rate拷贝到你的小程序目录下
在你要使用的页面的json文件中引入组件,如:index页面的index.json
{ "navigationBarTitleText": "首页", "usingComponents": { "multiple-rate": "你的目录/multiple-rate/multiple-rate" } }在wxml中即可使用组件
<multiple-rate rate="4" disabled="true"></multiple-rate>如看不明白请直接参考项目实例(/pages/index/index)注意
如果你有好的意见或建议,欢迎给我提issue!