美文网首页
小程序UI-评分

小程序UI-评分

作者: 幻想无极 | 来源:发表于2018-12-11 01:04 被阅读9次

代码

xwxml

 <view class='score'>
  <block wx:for="{{scoreSumArray}}" wx:key="scorekey">
    <image src="{{index<item.commentLevel?'/img/start_icon.png':'/img/start_icon_none.png'}}"></image>
  </block>
</view>Ï

wxss

.score {
  margin-left: 5px;
  display: flex;
  align-items: center;
  height: 20px;
}

.score image {
  width: 10px;
  height: 10px;
}

data

scoreSumArray:['','','','',''],

其中item.commentLevel替换为自己的参数,图片换为自己的图片,没有图片资源可以到阿里巴巴矢量图下载

效果

image.png

相关文章

网友评论

      本文标题:小程序UI-评分

      本文链接:https://www.haomeiwen.com/subject/umbjhqtx.html