guests.wxml 885 B

123456789101112131415161718192021222324
  1. <!--pages/detail/guests.wxml-->
  2. <view class="guests">
  3. <van-cell-group inset>
  4. <view style="background-color: #fff;padding: 1em;">
  5. <van-row>
  6. <van-col span="8">
  7. <image class="m_phone" style="{{'width: ' + (detail.width || 0) + 'px;height: ' + (detail.height || 0) + 'px'}}" src="{{detail.photo}}" bindload="imageload" />
  8. </van-col>
  9. <van-col span="16">
  10. <view style="padding: 0 0 0 1em;">
  11. <view class="title" style="margin-bottom: 1em;">{{detail.userName}}</view>
  12. <view class="van-multi-ellipsis--l2">{{detail.tags}}</view>
  13. </view>
  14. </van-col>
  15. </van-row>
  16. </view>
  17. </van-cell-group>
  18. <view style="height: 2em;"></view>
  19. <van-cell-group inset>
  20. <view style="background-color: #fff;padding: 1em;text-indent: 2em;">
  21. {{detail.userDesc}}
  22. </view>
  23. </van-cell-group>
  24. </view>