123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <view class="brokerIndex {{!agentBackgroundImg&&loadimg?'bgColors':''}}">
- <block wx:if="{{agentBackgroundImg}}">
- <image wx:if="{{loadimg}}" class="bg-image" mode="widthFix" src="{{agentBackgroundImg}}"></image>
- </block>
- <block wx:else="">
- <image wx:if="{{loadimg}}" class="bg-image" mode="widthFix" src="{{imgUrl}}/xcx/aaa/bj.jpg"></image>
- </block>
-
- <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">
- <input type="text" value="{{name}}" bindinput="nameInput" placeholder="请填写好友姓名"/>
- </view>
- <view class="msgxminput1 mt20">
- <text class="requiredRed">*</text>
- <input type="text" value="{{phone}}" bindinput="phoneInput" placeholder="请填写好友手机号码"/>
- </view>
- <view class="msgxminput mt20 msgxminput2">
- <input type="text" value="{{community_name}}" bindinput="communityNameInput" placeholder="小区"/>
- </view>
- <button bindtap="addCustomer" wx:if="{{brokeflag}}" loading="{{loading}}" disabled="{{loading}}" class="msgConfirmBtn">立即推荐</button>
- <button wx:if="{{!brokeflag}}" bindgetphonenumber="getPhoneNumberTap" open-type="getPhoneNumber" loading="{{loading}}" disabled="{{loading}}" class="msgConfirmBtn">立即推荐</button>
- </view>
- <view wx:if="{{false}}" 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 wx:if="{{item.type_name}}" class="pm_type">{{item.type_name}}</view>
- </view>
- <view class="pm_msg">{{agentName||'装修推荐官'}}:{{item.agent_name}} | 提供{{item.reccont}}个客户</view>
- </view>
- </view>
- <!-- 顶部swiper -->
- <view wx:if="{{swiperData.length}}" 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" bindtap="jumpSharePage">
- <image mode="widthFix" src="../../img/b_share.png"></image>
- <view class="defaultStyle">分享任务</view>
- </view>
- <view class="tabItem tabItem2" bindtap="jumpscreenshot">
- <image mode="widthFix" src="../../img/screenshotno.png"></image>
- <view class="defaultStyle">上传分享截图</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>
- <!-- 隐私协议授权 -->
- <privacy-popup bind:agree="agreePrivacy"></privacy-popup>
|