cantact-user.wxml 782 B

123456789101112
  1. <view class="contact-w">
  2. <view class="avatar-w" bindtap="toAgentDetail" style="background-image: url({{agent_user.avatar || 'https://4dkk2.4dage.com/v3/img/apps/vrhouse/avatar_default.jpg?_=246'}})">
  3. <image class="identify" src="{{agent_user.tag_image}}"></image>
  4. </view>
  5. <view class="user-info">
  6. <view class="username">{{agent_user.name ? agent_user.name : ''}}</view>
  7. <view class="user-type">{{agent_user.store ? agent_user.store : ''}}</view>
  8. </view>
  9. <button class="msg-btn btn" data-action="senMsg" open-type="getUserInfo" bindgetuserinfo="bindgetuserinfo" wx:if="{{ !loginStatus }}">在线问</button>
  10. <button class="msg-btn btn" bindtap="senMsg" wx:else>在线问</button>
  11. <button class="phone-btn btn" bindtap="makePhone">打电话</button>
  12. </view>