brokerindex.wxml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <view class="brokerIndex">
  2. <image class="bg-image" mode="widthFix" src="https://o.nczyzs.com/xcx/aaa/bj.png"></image>
  3. <view class="lc-style">
  4. <view class="headerFixed">
  5. <view class="headerTitle">
  6. <view class="hCircle"></view>
  7. <view class="hName">报备流程</view>
  8. <view class="hCircle"></view>
  9. </view>
  10. <image mode="widthFix" src="../../../img/headericon.png"></image>
  11. </view>
  12. <view class="lc-box">
  13. <view class="lc-box-1">
  14. <image mode="widthFix" src="../../../img/liucheng_1.png"></image>
  15. </view>
  16. <view class="lc-box-2">
  17. <image mode="widthFix" src="../../../img/liucheng_4.png"></image>
  18. </view>
  19. <view class="lc-box-1">
  20. <image mode="widthFix" src="../../../img/liucheng_2.png"></image>
  21. </view>
  22. <view class="lc-box-2">
  23. <image mode="widthFix" src="../../../img/liucheng_4.png"></image>
  24. </view>
  25. <view class="lc-box-1">
  26. <image mode="widthFix" src="../../../img/liucheng_3.png"></image>
  27. </view>
  28. </view>
  29. <view class="lc-box-msg">
  30. <view class="lc-box-msg-1">
  31. <text>填写</text>
  32. <text>客户信息</text>
  33. </view>
  34. <view class="lc-box-msg-2"></view>
  35. <view class="lc-box-msg-1">
  36. <text>成功</text>
  37. <text>成为客户</text>
  38. </view>
  39. <view class="lc-box-msg-2"></view>
  40. <view class="lc-box-msg-1">
  41. <text>经纪人</text>
  42. <text>获得奖励</text>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="msgadd">
  47. <view class="headerFixed">
  48. <view class="headerTitle">
  49. <view class="hCircle"></view>
  50. <view class="hName">信息填写</view>
  51. <view class="hCircle"></view>
  52. </view>
  53. <image mode="widthFix" src="../../../img/headericon.png"></image>
  54. </view>
  55. <view class="msgxminput">
  56. <image mode="widthFix" src="../../../img/xmicon.png"></image>
  57. <input type="text" value="{{name}}" bindinput="nameInput" placeholder="请填写客户姓名"/>
  58. </view>
  59. <view class="msgxminput1 mt20">
  60. <image mode="widthFix" src="../../../img/dianhuaicon.png"></image>
  61. <input type="text" value="{{phone}}" bindinput="phoneInput" placeholder="请填写客户手机号码"/>
  62. </view>
  63. <view class="msgxminput mt20 msgxminput2">
  64. <image mode="widthFix" src="../../../img/dzicon.png"></image>
  65. <input type="text" value="{{community_name}}" bindinput="communityNameInput" placeholder="请填写客户所在小区"/>
  66. </view>
  67. <button bindtap="addCustomer" loading="{{loading}}" class="msgConfirmBtn">确认提交</button>
  68. </view>
  69. <view class="customer_pm">
  70. <view class="headerFixed">
  71. <view class="headerTitle">
  72. <view class="hCircle"></view>
  73. <view class="hName">客户排行</view>
  74. <view class="hCircle"></view>
  75. </view>
  76. <image mode="widthFix" src="../../../img/headericon.png"></image>
  77. </view>
  78. <view wx:for="{{brokerRanklist}}" wx:key="{{index}}" class="pm_item_box">
  79. <view class="pm_num">
  80. <image wx:if="{{index == 0}}" mode="widthFix" src="../../../img/pmicon1.png"></image>
  81. <image wx:if="{{index == 1}}" mode="widthFix" src="../../../img/pmicon2.png"></image>
  82. <image wx:if="{{index == 2}}" mode="widthFix" src="../../../img/pmicon3.png"></image>
  83. <text wx:if="{{index>2}}">{{index+1}}</text>
  84. </view>
  85. <view class="pm_avatar">
  86. <image src="{{item.user && item.user.headimgurl ? item.user.headimgurl : '../../../img/default.png'}}"></image>
  87. <view class="pm_type">{{item.type=='普通'?'普':'网'}}</view>
  88. </view>
  89. <view class="pm_msg">经纪人:{{item.agent_name}} | 提供{{item.reccont}}个客户</view>
  90. </view>
  91. </view>
  92. <!-- 顶部swiper -->
  93. <view class="swiperBoxFixed">
  94. <swiper indicator-dots="{{false}}" vertical="{{true}}"
  95. autoplay="{{true}}" interval="{{3000}}" duration="{{500}}" circular="{{true}}" style="height: 70rpx;">
  96. <swiper-item wx:for="{{swiperData}}" wx:key="{{index}}" class="swiper-item">
  97. <view class="swiper-item-msg">
  98. <image src="{{item.user && item.user.headimgurl ? item.user.headimgurl : '../../../img/default.png'}}"></image>
  99. <view>恭喜 {{item.agent_name}} 成功邀请好友 获得奖励</view>
  100. </view>
  101. </swiper-item>
  102. </swiper>
  103. </view>
  104. <!-- 底部导航 -->
  105. <view class="tabBar">
  106. <view class="tabItem">
  107. <image mode="widthFix" src="../../../img/b_index_2.png"></image>
  108. <view class="activePage">首页</view>
  109. </view>
  110. <view class="tabItem tabItem1" bindtap="jumpMinePage">
  111. <image src="../../../img/b_mine_1.png" mode="widthFix"></image>
  112. <view class="defaultStyle">我的</view>
  113. </view>
  114. </view>
  115. </view>