index.wxml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- 小区确认begin -->
  2. <i-modal scrollUp="{{false}}" visible="{{visible&&canChange}}">
  3. <view class="community-box">
  4. <view class="community-content">
  5. <view class="community-content-title">
  6. 分享{{groupInfo.owner_name}}与当前{{groupInfo.owner_name}}不一致,<block wx:if="{{canChange}}">请选择</block><block wx:else>因为设置无法切换{{groupInfo.owner_name}},所以仍绑定之前{{groupInfo.owner_name}}。</block>
  7. </view>
  8. <view class="community-content-tip">
  9. <view class="item" bindtap="switchCommunity" data-type="1">
  10. <view class="item-l">
  11. <image class="img" src="{{changeCommunity.disUserHeadImg}}"></image>
  12. <view class="type">分享{{groupInfo.owner_name}}</view>
  13. </view>
  14. <view class="item-r">
  15. <view class="name">{{changeCommunity.communityName}} <text wx:if="{{changeCommunity.distance}}" class="distance">{{changeCommunity.distance}}</text></view>
  16. <view class="address">{{changeCommunity.fullAddress}}</view>
  17. </view>
  18. <view class="item-ft">
  19. <image mode="widthFix" class="img" src="../../images/community-right-arrow.png"></image>
  20. </view>
  21. </view>
  22. <view class="item" bindtap="switchCommunity" data-type="0" wx:if="{{community&&community.communityName}}">
  23. <view class="item-l">
  24. <image class="img" src="{{community.disUserHeadImg}}"></image>
  25. <view class="type green">原{{groupInfo.owner_name}}</view>
  26. </view>
  27. <view class="item-r">
  28. <view class="name">{{community.communityName}} <text class="distance" wx:if="{{community.distance}}">{{community.distance}}</text></view>
  29. <view class="address">{{community.fullAddress}}</view>
  30. </view>
  31. <view class="item-ft">
  32. <image mode="widthFix" class="img" src="../../images/community-right-arrow.png"></image>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </i-modal>
  39. <!-- 小区确认end -->