123456789101112131415161718192021222324 |
- <view class="title">线索详情</view>
- <van-cell title-width='130px' clickable title-class='title-class' title="客户名称" value="{{detailsData.name}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="手机号码" value="{{detailsData.phonenumber}}">
- <view slot='right-icon'>
- <text class="iconfont icon-bodadianhua"></text>
- </view>
- </van-cell>
- <van-cell title-width='130px' clickable title-class='title-class' title="省市县" value="{{detailsData.province}}{{detailsData.city}}{{detailsData.county}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="地址" value="{{detailsData.address}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="来源" value="{{detailsData.cluesource}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="所属经销商" value="{{detailsData.agentname}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="负责人" value="{{detailsData.leadername}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="状态" value="{{detailsData.status}}" />
- <view class="title">系统信息</view>
- <van-cell title-width='130px' clickable title-class='title-class' title="创建人" value="{{detailsData.createBy}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="创建时间" value="{{detailsData.createDate}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="分配人" value="{{detailsData.assignedBy}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="分配时间" value="{{detailsData.assignedDate}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="最近跟进人" value="{{detailsData.followBy}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="最近跟进时间" value="{{detailsData.followDate}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="最近转移时间" value="{{detailsData.changeBy}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="最近转移人" value="{{detailsData.changeDate}}" />
- <van-cell title-width='130px' clickable title-class='title-class' title="最近编辑时间" value="{{detailsData.editDate}}" />
|