| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <view wx-if="{{searchShow}}">
- <van-transition show="{{ searchShow }}" name='fade' duration='300'>
- <view>
- <van-search focus="{{focus}}" value="{{searchValue}}" placeholder="{{language['请输入关键字']||'请输入关键字'}}" bind:search="onSearch" bind:clear="onClear" bind:change="onChange" />
- </view>
- </van-transition>
- </view>
- <Yl_ListBox id='ListBox' bind:getlist='getList'>
- <view style='margin-top:20rpx'></view>
- <navigator url="/portrayal/details/client?id={{item.sa_customersid}}" wx:for="{{list}}" wx:key='sa_customersid' class="global-card item" hover-class="navigator-hover">
- <view class="title line-1">{{item.enterprisename||'--'}}</view>
- <view class="tag-box">
- <view class="tag" style="background-color:{{sColors[tag]||'#3874F6'}}" wx:for="{{item.sys_tag}}" wx:for-item='tag' wx:key='tag'>
- {{language[tag]||tag}}
- </view>
- </view>
- <view class="line">
- {{language['客户类型']||'客户类型'}}:{{language[item.type]||item.type||'--'}}
- </view>
- <view class="line">
- {{language['客户分类']||'客户分类'}}:{{language[item.customergrade]||item.customergrade||'--'}}
- </view>
- <view class="line">
- {{language['合作状态']||'合作状态'}}:
- <view style="color:{{sColors[item.status]||'999999'}}">
- {{language[item.status]||item.status}}
- </view>
- </view>
- <view class="line">
- {{language['成交状态']||'成交状态'}}:
- <view style="color:{{sColors[item.tradingstatus]||'999999'}}">
- {{language[item.tradingstatus]||item.tradingstatus}}
- </view>
- </view>
- <view class="line">{{language['负责人']||'负责人'}}:{{item.name||'--'}}</view>
- <view class="but">
- {{language['查看详情']||'查看详情'}}
- <text class='iconfont icon-webfanhui' />
- </view>
- </navigator>
- <My_empty wx:if="{{list.length==0}}" />
- </Yl_ListBox>
- <Yl_Filtrate1 id='Yl_Filtrate1' show='{{showFiltrate}}' list='{{filtratelist}}' dateRange bindhandle="handleFilter">
- <organization slot='head' defaultIsleave='1' dimissionF id='organization' />
- </Yl_Filtrate1>
|