You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
4.9 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<view class="p10" wx:if="{{dataLoading}}">
<view class="bgf br8">
<view class="wx-text-list br8">
<view class='wx-list-li'>
<view class='f16 mw-label'>
姓名
</view>
<view class="section flex-right">
<view class="c6">{{workOrderDetail.userName}}</view>
</view>
</view>
<view class='wx-list-li'>
<view class='f16 mw-label '>
手机号
</view>
<view class="section flex-right">
<view style="color:#027aff" catchtap="makePhone" data-phone="{{workOrderDetail.tel}}">
<i class="iconfont icon-dianhua3" wx:if="{{workOrderDetail.tel != null}}"></i> {{workOrderDetail.tel}}
</view>
</view>
</view>
<view class='wx-list-li'>
<view class='f16 mw-label '>
代理
</view>
<view class="section flex-right">
<view class="c6">{{workOrderDetail.agencyUserName}}</view>
</view>
</view>
<!-- <view class='wx-list-li'>
<view class='f16 mw-label '>
跟进记录
</view>
<view class="section flex-right">
</view>
</view> -->
<view style="padding:0 10px;" wx:if="{{workOrderDetail.serveRecordList.length > 0}}">
<view class='ui-list ui-list-text ui-border-tb ui-step {{!downShow ? "all" : ""}}' style="margin-top:0;">
<view class="f16 mb18" style="margin-bottom:30px;margin-left:0;">跟进记录</view>
<view wx:for="{{workOrderDetail.serveRecordList}}" wx:for-item="item" wx:for-index="idx">
<view class="cb-cricle"></view>
<view class="ui-list-info">
<view class="pr" style="top:-10px;">
<!-- <view class="f16 c3">{{item.desp}}</view> -->
<rich-text nodes='{{item.desp}}' class="f16 c3"></rich-text>
<view class="f14 c9">{{item.creator}}<text class="ml8">{{item.createTimeStr}}</text></view>
</view>
</view>
</view>
<!-- <view>
<view class="cb-cricle"></view>
<view class="ui-list-info">
<view class="pr" style="top:-10px;">
<view class="f16 c3">反馈【已拨通】在忙有求职意向2日后 有时间</view>
<view class="f14 c6">李经理 1天前 通话时长3分钟</view>
</view>
</view>
</view> -->
</view>
<block wx:if="{{workOrderDetail.serveRecordList.length > 3}}">
<view class="tc f14 c9 pb8" hover-class="thover" bindtap="showAll" wx:if="{{downShow}}">
<i class="iconfont icon-chakangengduo mr8 f12"></i>查看更多
</view>
<view class="tc f14 c9 pb8" hover-class="thover" bindtap="showAll" wx:if="{{!downShow}}">
<i class="iconfont icon-chakangengduo mr8 f12 dib" style="transform:rotate(180deg);position:relative"></i>收起
</view>
</block>
</view>
</view>
</view>
<form catchsubmit="formSubmit">
<view class="wx-text-list br8 mt10" style="overflow: hidden;">
<view class='wx-list-li'>
<view class='f16 mw-label' style="min-width:50px;">
状态
</view>
<view class="section flex-right">
<radio-group bindchange="radioChange" name="orderStatus">
<view wx:for="{{orderStatusArray}}" class="dib" style="margin-left:12px;" wx:key="{{item.value}}">
<radio value="{{item.value}}" color="#027aff" style="transform:scale(0.8)" checked="{{item.checked}}" />
<text class="f14">{{item.name}}</text>
</view>
</radio-group></view>
</view>
<!-- <view style="margin-bottom: 20px;">
</view> -->
<view class='wx-list-li' style="padding:0;"></view>
<view class="mt10" style="padding: 10px">
<view class='f16 mw-label'>备注</view>
<textarea name="desp" auto-height placeholder="请在此输入跟进结果" style="margin-top:20px;min-height:60px;width: 100%;" cursor-spacing="20"/>
</view>
</view>
<button class="newBtn weui-btn" style="margin-top:40px;" hover-class="thover" disabled="{{loading ? 'weui-btn_loading' :''}}" formType="submit">提交</button>
</form>
</view>
<scroll-view class="fadeIn" wx:if="{{phoneDialog}}" style="position: relative;z-index: 999;">
<view class="weui-mask"></view>
<view class="weui-dialog p020" style="box-sizing:border-box;">
<view class="weui-dialog__hd"><strong class="weui-dialog__title">{{phone}}</strong></view>
<view class="display-flex pb20" style="padding-top:20px;">
<view class="flex-1 lflex v-center" bindtap="close" hover-class="thover">取消</view>
<view class="rflex">
<button class="" type="primary" bindtap="makePhoneCall" hover-class="thover">呼叫</button>
</view>
</view>
</view>
</scroll-view>