index.wxml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!--pages/guests/index.wxml-->
  2. <view class="guests">
  3. <block wx:if="{{guests_marster.length}}">
  4. <view class="guests_title">
  5. 主讲嘉宾
  6. </view>
  7. <view style="padding-left: 10rpx;">
  8. <view bindtap="toPage" data-url="/pages/detail/guests" data-id="{{item.id}}" wx:for="{{guests_marster}}" wx:key="index" class="m_phone_bg">
  9. <image class="m_phone" style="{{'width: ' + (item.width || 0) + 'px;height: ' + (item.height || 0) + 'px'}}" src="{{item.photo}}" bindload="imageload" data-index="{{index}}" />
  10. <view style="padding: 10rpx 15rpx;" class="van-ellipsis">
  11. {{item.userName}}
  12. </view>
  13. <view style="padding: 10rpx 15rpx;" class="van-multi-ellipsis--l2">
  14. <!-- <view style="padding: 10rpx 15rpx;" class="van-ellipsis"> -->
  15. {{item.tags}}
  16. </view>
  17. </view>
  18. </view>
  19. </block>
  20. <block wx:if="{{guests_participate_in.length}}">
  21. <view class="guests_title">
  22. 参会嘉宾
  23. </view>
  24. <van-cell-group inset>
  25. <van-cell wx:for="{{guests_participate_in}}" wx:key="index" title="{{item.userName}}" label="{{item.tags}}" />
  26. </van-cell-group>
  27. </block>
  28. <block wx:if="{{guests_ordinary.length}}">
  29. <view class="guests_title">
  30. 参会嘉宾
  31. </view>
  32. <van-cell-group inset>
  33. <van-cell wx:for="{{guests_ordinary}}" wx:key="index" title="{{item.userName}}" label="{{item.tags}}" />
  34. </van-cell-group>
  35. </block>
  36. </view>