client.wxml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <view wx-if="{{searchShow}}">
  2. <van-transition show="{{ searchShow }}" name='fade' duration='300'>
  3. <view>
  4. <van-search focus="{{focus}}" value="{{searchValue}}" placeholder="{{language['请输入关键字']||'请输入关键字'}}" bind:search="onSearch" bind:clear="onClear" bind:change="onChange" />
  5. </view>
  6. </van-transition>
  7. </view>
  8. <Yl_ListBox id='ListBox' bind:getlist='getList'>
  9. <view style='margin-top:20rpx'></view>
  10. <navigator url="/portrayal/details/client?id={{item.sa_customersid}}" wx:for="{{list}}" wx:key='sa_customersid' class="global-card item" hover-class="navigator-hover">
  11. <view class="title line-1">{{item.enterprisename||'--'}}</view>
  12. <view class="tag-box">
  13. <view class="tag" style="background-color:{{sColors[tag]||'#3874F6'}}" wx:for="{{item.sys_tag}}" wx:for-item='tag' wx:key='tag'>
  14. {{language[tag]||tag}}
  15. </view>
  16. </view>
  17. <view class="line">
  18. {{language['客户类型']||'客户类型'}}:{{language[item.type]||item.type||'--'}}
  19. </view>
  20. <view class="line">
  21. {{language['客户分类']||'客户分类'}}:{{language[item.customergrade]||item.customergrade||'--'}}
  22. </view>
  23. <view class="line">
  24. {{language['合作状态']||'合作状态'}}:
  25. <view style="color:{{sColors[item.status]||'999999'}}">
  26. {{language[item.status]||item.status}}
  27. </view>
  28. </view>
  29. <view class="line">
  30. {{language['成交状态']||'成交状态'}}:
  31. <view style="color:{{sColors[item.tradingstatus]||'999999'}}">
  32. {{language[item.tradingstatus]||item.tradingstatus}}
  33. </view>
  34. </view>
  35. <view class="line">{{language['负责人']||'负责人'}}:{{item.name||'--'}}</view>
  36. <view class="but">
  37. {{language['查看详情']||'查看详情'}}
  38. <text class='iconfont icon-webfanhui' />
  39. </view>
  40. </navigator>
  41. <My_empty wx:if="{{list.length==0}}" />
  42. </Yl_ListBox>
  43. <Yl_Filtrate1 id='Yl_Filtrate1' show='{{showFiltrate}}' list='{{filtratelist}}' dateRange bindhandle="handleFilter">
  44. <organization slot='head' defaultIsleave='1' dimissionF id='organization' />
  45. </Yl_Filtrate1>