list.wxml 1.0 KB

1234567891011121314
  1. <navigator class="box" url="/pages/threadedTree/details/index?id={{item.sat_orderclueid}}&color={{tagColor!='#ffffff'?tagColor:''}}" wx:for="{{list}}" wx:key="sat_orderclueid">
  2. <view class="title">
  3. <view class="line-1">{{item.name}}</view>
  4. <text wx:if="{{item.lognum}}">{{item.lognum}}次跟进</text>
  5. </view>
  6. <view wx:if="{{item.followBy}}">最近跟进人:{{item.followBy}}</view>
  7. <view wx:if="{{item.followtime}}">最近跟进时间:{{item.followtime}}</view>
  8. <view wx:else>跟进状态:暂未跟进</view>
  9. <view class="line-1">地址:{{item.province?item.province+item.city+item.county+item.address:"暂无"}}</view>
  10. <view catchtap="callOut" data-phonenumber="{{item.phonenumber}}">
  11. <text class="iconfont icon-bodadianhua" style="color: #52C41A; font-size: 24rpx;margin-right: 10rpx;" />手机号:{{item.phonenumber}}
  12. </view>
  13. <view class="r-t-state {{tagColor=='#ffffff'?'fff':''}}" style="background: {{tagColor}};">{{item.status}}</view>
  14. </navigator>