| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <wxs src='../../../../utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 单据信息 -->
- <view class="dk-card-outer-class">
- <view class="dk-card-class">
- <view>
- <view>
- <van-field readonly="{{true}}" label="客户名称" data-index="{{index}}" value="{{ item.customerName }}"
- input-align="right" maxlength="50" border="{{ false }}" use-button-slot>
- </van-field>
- <view wx:if="{{item.customerName != '无联系人'}}"
- style="display: flex; justify-content: space-between;width: 90%;height: 44px;background-color: white; padding-left: 16px; align-items: center;">
- <dk-text fontSize="14px" color="#2E3853" fontWeight="nomal" value="联系电话"
- copyValue="{{item.customerPhone?item.customerPhone:''}}"></dk-text>
- <view style="font-size: 13px; color: #95A8CB; ">{{item.customerPhone?item.customerPhone:''}}
- </view>
- </view>
-
- <!-- 客户地址 -->
- <view wx:if="{{item.customerName != '无联系人'}}"
- style="display: flex; justify-content: space-between;width: 90%;height: 44px;background-color: white; padding-left: 16px; align-items: center;">
- <view style="">
- <dk-text fontSize="14px" color="#2E3853" fontWeight="nomal" value="客户地址" class="inputStyle"
- copyValue="{{ wxmlUtil.addressFullIsUndefined(item.addressFull)}}"></dk-text>
- </view>
-
- <view style="font-size: 13px; color: #95A8CB; text-align:right;">{{wxmlUtil.addressToIndexOf(item.addressFull?item.addressFull:'')}}</view>
- </view>
-
- <!-- <van-field value="{{ item.addressNo }}" readonly="{{ true }}" input-align="right" label="门牌号" autosize
- border="{{ false }}" use-button-slot>
- </van-field> -->
- <van-cell wx:if="{{item.customerName != '无联系人'}}" is-link border="{{ false }}" title-width="180rpx" title="客户意向" value="{{item.intentionName }}" />
- <view wx:if="{{item.CustomerIntentionsName == '已流失'}}">
- <van-field value="{{ item.CustomerIntentionsName }}" input-align="left" label="竞品品牌" autosize
- border="{{ false }}">
- </van-field>
- </view>
- <!-- 手风琴,复选框输入 showOtherFlag :是否显示其他分类 showFieldFlag:是否显示输入框
- disabledFlag:输入框是否输入 checkboxClinkFlag:box能否点动-->
- <dk-accordion-box wx:if="{{item.customerName != '无联系人'}}" titleName="意向品类" dataList="{{specsList}}" showOtherFlag="{{true}}" showFieldFlag="{{true}}"
- disabledFlag="{{true}}" checkboxClinkFlag="{{false}}"> </dk-accordion-box>
- </view>
- <van-field rows="5" autosize label="跟进内容" value="{{ item.followData }}" input-class="input-class" type="textarea"
- maxlength="1000" readonly="{{true}}" border="{{false}}">
- </van-field>
- <van-field wx:if="{{item.customerName != '无联系人'}}" rows="5" autosize label="下次跟进计划" value="{{ item.nextFollowPlan?item.nextFollowPlan:'' }}"
- type="textarea" maxlength="1000" input-class="input-class" readonly="{{true}}"
- border="{{false}}" />
- <van-cell wx:if="{{item.customerName != '无联系人'}}" is-link value-class="PickDate_Month" title-width="29%" border="{{ false }}" title="提醒时间"
- value="{{item.nextFollowTime?item.nextFollowTime:'' }}" />
- <van-cell wx:if="{{item.stayTimeLen}}" is-link border="{{ false }}" title-width="180rpx" title="留店时长" value="{{ item.stayTimeLen }}" is-link />
- <!-- 图片 -->
- <view style="padding:19px;display:flex;background: white;">
- <view>
- <view style="font-size:14px;color: #95A8CB; margin-bottom: 10px;">
- 图片
- </view>
- <van-uploader file-list="{{ fileList }}" disabled="{{true}}" deletable="{{false}}" show-upload="{{false}}">
- </van-uploader>
- </view>
- </view>
- <view style="height: 7vw;"></view>
- </view>
- </view>
- </view>
- <view style="height: 249rpx;"></view>
- <view class="bottom-class-1" >
- <view style="background:#fff;position:fixed;bottom:0;width:100%;z-index:2;margin-bottom: 45rpx;">
- <view style="display:flex;justify-content: space-around;width:100%;">
- <view style="width:100%;height:80rpx; text-align: center;">
- <van-button color="#1B365D" custom-style="height:80rpx;width:90%;border-radius: 15rpx;" loading="{{loading}}" bind:click="toEdit"type="info">编辑
- </van-button>
- </view>
- </view>
- </view>
- </view>
|