index.wxml 2.3 KB

123456789101112131415161718192021222324
  1. <view class="title">线索详情</view>
  2. <van-cell title-width='130px' clickable title-class='title-class' title="客户名称" value="{{detailsData.name}}" />
  3. <van-cell title-width='130px' clickable title-class='title-class' title="手机号码" value="{{detailsData.phonenumber}}">
  4. <view slot='right-icon'>
  5. <text class="iconfont icon-bodadianhua"></text>
  6. </view>
  7. </van-cell>
  8. <van-cell title-width='130px' clickable title-class='title-class' title="省市县" value="{{detailsData.province}}{{detailsData.city}}{{detailsData.county}}" />
  9. <van-cell title-width='130px' clickable title-class='title-class' title="地址" value="{{detailsData.address}}" />
  10. <van-cell title-width='130px' clickable title-class='title-class' title="来源" value="{{detailsData.cluesource}}" />
  11. <van-cell title-width='130px' clickable title-class='title-class' title="所属经销商" value="{{detailsData.agentname}}" />
  12. <van-cell title-width='130px' clickable title-class='title-class' title="负责人" value="{{detailsData.leadername}}" />
  13. <van-cell title-width='130px' clickable title-class='title-class' title="状态" value="{{detailsData.status}}" />
  14. <view class="title">系统信息</view>
  15. <van-cell title-width='130px' clickable title-class='title-class' title="创建人" value="{{detailsData.createBy}}" />
  16. <van-cell title-width='130px' clickable title-class='title-class' title="创建时间" value="{{detailsData.createDate}}" />
  17. <van-cell title-width='130px' clickable title-class='title-class' title="分配人" value="{{detailsData.assignedBy}}" />
  18. <van-cell title-width='130px' clickable title-class='title-class' title="分配时间" value="{{detailsData.assignedDate}}" />
  19. <van-cell title-width='130px' clickable title-class='title-class' title="最近跟进人" value="{{detailsData.followBy}}" />
  20. <van-cell title-width='130px' clickable title-class='title-class' title="最近跟进时间" value="{{detailsData.followDate}}" />
  21. <van-cell title-width='130px' clickable title-class='title-class' title="最近转移时间" value="{{detailsData.changeBy}}" />
  22. <van-cell title-width='130px' clickable title-class='title-class' title="最近转移人" value="{{detailsData.changeDate}}" />
  23. <van-cell title-width='130px' clickable title-class='title-class' title="最近编辑时间" value="{{detailsData.editDate}}" />