| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <view class="head">
- <view class="count">
- 总共{{content.total}}个
- </view>
- <view class="expand">
- <van-search wx:if="{{showSearch}}" custom-class='custom-class' focus='{{focus}}' value="{{ condition }}" shape="round" bind:change='onChange' bind:search='onSearch' bind:clear='onSearch' placeholder="业务员、跟进内容" background='#F4F5F7' />
- <navigator url="#" class="but" bindtap="toSearch">
- <van-icon name="search" />
- </navigator>
- <navigator wx:if="{{disabled}}" url="#" class="but" bindtap="toAdd">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <view class="trace-box" wx:for="{{followList}}" wx:key="sat_ordercluefollowuplogid">
- <view class="item" data-item="{{item}}">
- <view class="createdate">
- {{item.createdate}}
- </view>
- <view class="user">
- <view class="portrait">
- {{item.createby[0]}}
- </view>
- <view class="content">
- <view class="label">
- {{item.createby}}
- </view>
- <view class="position">
- <text style="margin-right:50rpx;">部门:{{item.depname||' --'}}</text>
- <text>职位:{{item.position||' --'}}</text>
- </view>
- </view>
- </view>
- <view class="type" style="margin-right: 50rpx;">
- 跟进类型:<text>{{item.followupmode|| ' --'}}</text>
- </view>
- <view class="text">
- {{item.content||' --'}}
- </view>
- <view class="type" wx:if="{{isshowsalesfeesamount}}">
- 营销费用:<text style="color: #FF3B30;">{{item.showsalesfeesamount}}</text>
- </view>
- </view>
- <Yl_Files id="{{'Yl_Files'+item.rowindex}}" attinfos="{{item.attinfo}}" delete="{{disabled && userid == item.createuserid}}" strict />
- <commentList id="Comment{{item.sat_ordercluefollowuplogid}}" comments='{{item.comment}}' quantity="{{item.commentqty}}" ownertable='sat_ordercluefollowuplog' ownerid='{{item.sat_ordercluefollowuplogid}}' bind:updateCommentList='updateCommentList' />
- <view class="bottom">
- <navigator url="#" class="comment" bind:tap="comment" id="Comment{{item.sat_ordercluefollowuplogid}}">
- <text class="iconfont icon-huifu" /><text style="color: #3874F6;">评论({{item.commentqty}})</text>
- </navigator>
- <view style="flex: 1;" />
- <navigator wx:if="{{expenseBreakdown}}" url="#" bindtap="expenseBreakdown" data-item="{{item}}" data-index="{{index}}">
- <text class="iconfont icon-yingxiaofeiyongmingxi" />费用明细
- </navigator>
- <block wx:if="{{disabled}}">
- <navigator url="#" bindtap="editItem" data-item="{{item}}">
- <text class="iconfont icon-bianji" />编辑
- </navigator>
- <navigator url="#" bindtap="deleteItem" data-item="{{item}}">
- <text class="iconfont icon-qunzu" />删除
- </navigator>
- </block>
- </view>
- </view>
- <My_empty wx:if="{{followList.length==0}}" />
- <van-popup show="{{ poputShow }}" round position="bottom" custom-style="min-height:70%;max-height:100%" bind:close="onClosePoput">
- <view class="head">查看附件</view>
- <Yl_Files id="Yl_Files" />
- <view style="height: 130rpx;" />
- </van-popup>
|