🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## star-template.wxml ### 创建star模板 ``` <template name="starTemplate"> <view class='star'> //循环stars数组,判断item为0还是1,进行图片的选择 <block wx:for="{{stars}}" wx:key="index"> <image src="{{item?'/images/icon/star.png':'/images/icon/none-star.png'}}"></image> </block> </view> </template> ```