index.wxml 1000 B

1234567891011121314151617181920
  1. <view class="add">
  2. <navigator class="box" url="#" bindtap="handleCallBack">
  3. <view class="content">
  4. <view style="height: 48rpx; width: 48rpx; margin-right: 20rpx;">
  5. <text class="iconfont icon-tianjialianxiren" style="color:#FA8C16; font-size: 48rpx;"></text>
  6. </view>
  7. <view class="text">添加联系人{{types}}</view>
  8. <van-icon size='14' color='#D2D2D2' style="margin-right: 30rpx;" name="arrow" />
  9. </view>
  10. </navigator>
  11. <navigator wx:if="{{isGroup}}" class="box" url="#" bindtap="addGroup">
  12. <view class="content">
  13. <view style="height: 48rpx; width: 48rpx; margin-right: 20rpx;">
  14. <text class="iconfont icon-tianjiaqunzu" style="color:#52C41A; font-size: 48rpx;"></text>
  15. </view>
  16. <view class="text">添加群组</view>
  17. <van-icon size='14' color='#D2D2D2' style="margin-right: 30rpx;" name="arrow" />
  18. </view>
  19. </navigator>
  20. </view>