123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <view class="brokerIndex">
- <image class="bg-image" mode="widthFix" src="https://o.nczyzs.com/xcx/aaa/bj.png"></image>
- <view class="lc-style">
- <view class="headerFixed">
- <view class="headerTitle">
- <view class="hCircle"></view>
- <view class="hName">报备流程</view>
- <view class="hCircle"></view>
- </view>
- <image mode="widthFix" src="../../../img/headericon.png"></image>
- </view>
- <view class="lc-box">
- <view class="lc-box-1">
- <image mode="widthFix" src="../../../img/liucheng_1.png"></image>
- </view>
- <view class="lc-box-2">
- <image mode="widthFix" src="../../../img/liucheng_4.png"></image>
- </view>
- <view class="lc-box-1">
- <image mode="widthFix" src="../../../img/liucheng_2.png"></image>
- </view>
- <view class="lc-box-2">
- <image mode="widthFix" src="../../../img/liucheng_4.png"></image>
- </view>
- <view class="lc-box-1">
- <image mode="widthFix" src="../../../img/liucheng_3.png"></image>
- </view>
- </view>
- <view class="lc-box-msg">
- <view class="lc-box-msg-1">
- <text>填写</text>
- <text>客户信息</text>
- </view>
- <view class="lc-box-msg-2"></view>
- <view class="lc-box-msg-1">
- <text>成功</text>
- <text>成为客户</text>
- </view>
- <view class="lc-box-msg-2"></view>
- <view class="lc-box-msg-1">
- <text>经纪人</text>
- <text>获得奖励</text>
- </view>
- </view>
- </view>
- <view class="msgadd">
- <view class="headerFixed">
- <view class="headerTitle">
- <view class="hCircle"></view>
- <view class="hName">信息填写</view>
- <view class="hCircle"></view>
- </view>
- <image mode="widthFix" src="../../../img/headericon.png"></image>
- </view>
- <view class="msgxminput">
- <image mode="widthFix" src="../../../img/xmicon.png"></image>
- <input type="text" value="{{name}}" bindinput="nameInput" placeholder="请填写客户姓名"/>
- </view>
- <view class="msgxminput1 mt20">
- <image mode="widthFix" src="../../../img/dianhuaicon.png"></image>
- <input type="text" value="{{phone}}" bindinput="phoneInput" placeholder="请填写客户手机号码"/>
- </view>
- <view class="msgxminput mt20 msgxminput2">
- <image mode="widthFix" src="../../../img/dzicon.png"></image>
- <input type="text" value="{{community_name}}" bindinput="communityNameInput" placeholder="请填写客户所在小区"/>
- </view>
- <button bindtap="addCustomer" loading="{{loading}}" class="msgConfirmBtn">确认提交</button>
- </view>
- <view class="customer_pm">
- <view class="headerFixed">
- <view class="headerTitle">
- <view class="hCircle"></view>
- <view class="hName">客户排行</view>
- <view class="hCircle"></view>
- </view>
- <image mode="widthFix" src="../../../img/headericon.png"></image>
- </view>
- <view wx:for="{{brokerRanklist}}" wx:key="{{index}}" class="pm_item_box">
- <view class="pm_num">
- <image wx:if="{{index == 0}}" mode="widthFix" src="../../../img/pmicon1.png"></image>
- <image wx:if="{{index == 1}}" mode="widthFix" src="../../../img/pmicon2.png"></image>
- <image wx:if="{{index == 2}}" mode="widthFix" src="../../../img/pmicon3.png"></image>
- <text wx:if="{{index>2}}">{{index+1}}</text>
- </view>
- <view class="pm_avatar">
- <image src="{{item.user && item.user.headimgurl ? item.user.headimgurl : '../../../img/default.png'}}"></image>
- <view class="pm_type">{{item.type=='普通'?'普':'网'}}</view>
- </view>
- <view class="pm_msg">经纪人:{{item.agent_name}} | 提供{{item.reccont}}个客户</view>
- </view>
- </view>
- <!-- 顶部swiper -->
- <view class="swiperBoxFixed">
- <swiper indicator-dots="{{false}}" vertical="{{true}}"
- autoplay="{{true}}" interval="{{3000}}" duration="{{500}}" circular="{{true}}" style="height: 70rpx;">
- <swiper-item wx:for="{{swiperData}}" wx:key="{{index}}" class="swiper-item">
- <view class="swiper-item-msg">
- <image src="{{item.user && item.user.headimgurl ? item.user.headimgurl : '../../../img/default.png'}}"></image>
- <view>恭喜 {{item.agent_name}} 成功邀请好友 获得奖励</view>
- </view>
- </swiper-item>
- </swiper>
- </view>
- <!-- 底部导航 -->
- <view class="tabBar">
- <view class="tabItem">
- <image mode="widthFix" src="../../../img/b_index_2.png"></image>
- <view class="activePage">首页</view>
- </view>
- <view class="tabItem tabItem1" bindtap="jumpMinePage">
- <image src="../../../img/b_mine_1.png" mode="widthFix"></image>
- <view class="defaultStyle">我的</view>
- </view>
- </view>
- </view>
|