index.wxml 436 B

1234567891011
  1. <scroll-view scroll-y>
  2. <view class="input_text_box {{userIndex==index?'optfor':''}}" data-index="{{index}}" bindtap="userChange" wx:for="{{userList}}">
  3. <image class="input_text_img" src="../../static/userImage.png" mode="aspectFill"></image>
  4. <view class="user_name">
  5. {{item.fname}}
  6. </view>
  7. <view class="user_identity">
  8. {{item.frole}}
  9. </view>
  10. </view>
  11. </scroll-view>