communityShow.wxml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template name="communityShow">
  2. <view class="header-content" style="background: {{item.backgroundColor}}">
  3. <view class="location" wx:if="{{item.style==1}}" style='color: {{item.textColor}}'>
  4. <view class="location-left" wx:if="{{community&&community.communityName}}">
  5. <navigator hoverClass="router-hover" url="/lionfish_comshop/pages/position/community"
  6. wx:if="{{hide_community_change_btn==0&&open_danhead_model!=1}}">
  7. <view class="community-title">
  8. <view class="text-overflow1" style="max-width: 360rpx;">{{community.communityName}}</view>
  9. <text class='community-change' wx:if="{{hide_community_change_word==0}}">切换</text>
  10. <text class="iconfont icon-youjiantou"></text>
  11. </view>
  12. </navigator>
  13. <view wx:else>
  14. <view class="community-title">
  15. <span>{{community.communityName}}</span>
  16. </view>
  17. </view>
  18. <view class="community-address" bindtap='gotoMap' wx:if="{{index_hide_headdetail_address==0}}">
  19. <text class="iconfont icon-weizhi-tianchong"></text>
  20. {{community.address||community.communityAddress||community.fullAddress}}
  21. </view>
  22. </view>
  23. <view class="location-left" wx:else>
  24. <navigator hoverClass="router-hover" url="/lionfish_comshop/pages/position/community">
  25. 您还没有选择{{groupInfo.owner_name}},轻触去选择 <text class="iconfont icon-weizhi-tianchong"></text>
  26. </navigator>
  27. </view>
  28. <view class="location-right">
  29. <image src='{{community.headImg ? community.headImg: community.disUserHeadImg}}' class='img'></image>
  30. <text>{{community.disUserName}}</text>
  31. </view>
  32. </view>
  33. <view class="location-theme2" style='color: {{item.textColor}}' wx:else>
  34. <block wx:if="{{community&&community.communityName}}">
  35. <view class="loc-l">
  36. <image src='{{community.headImg ? community.headImg: community.disUserHeadImg}}' class='img'></image>
  37. </view>
  38. <view class="loc-m" wx:if="{{hide_community_change_btn==0&&open_danhead_model!=1}}" bindtap="goLink" data-link="/lionfish_comshop/pages/position/community">
  39. {{community.communityName}}
  40. <text style='font-size:20rpx;' wx:if="{{hide_community_change_word==0}}" class="u-m-l-20">切换</text>
  41. <text class="iconfont icon-youjiantou" style='font-size:18rpx;'></text>
  42. </view>
  43. <view class="loc-m" wx:else>{{community.communityName}}</view>
  44. </block>
  45. <view class="loc-l" wx:else>
  46. <navigator hoverClass="router-hover" url="/lionfish_comshop/pages/position/community">
  47. 您还没有选择{{groupInfo.owner_name}},轻触去选择 <text class="iconfont icon-weizhi-tianchong"></text>
  48. </navigator>
  49. </view>
  50. <view class="top-search" bindtap="goLink" data-link="/lionfish_comshop/pages/type/search">
  51. <text class="iconfont icon-sousuo1"></text>搜索
  52. </view>
  53. </view>
  54. </view>
  55. </template>