epmet 工作端 小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.0 KiB

<view class="search" >
<input placeholder="按工单号" class="input " value="{{workOrderNum}}" />
<input placeholder="手机号" class="input" value="{{mobile}}" />
<!-- <van-search input-class="custom-search" shape="round" use-left-icon-slot="false" value="{{ value }}" placeholder="按工单号" /> -->
<!-- <van-search custom-style="custom-search" shape="round" use-left-icon-slot="false" value="{{ value }}" placeholder="手机号" /> -->
<view class="filter" bind:tap="handelShow">
<text wx:if="{{statusType == ''}}">办理状态</text>
<text >{{statusType}}</text>
</view>
<view class="btn">筛选</view>
</view>
<view class="section_5">
<scroll-view scroll-y="{{true}}" scroll-into-view="scrollToHere" style="width: 100%; height: 90vh;" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
<view class="list_1" wx:for="{{eventList}}" wx:key="{{item.icEventId}}">
<view class="section_1-0" >
<view class="flex-x">
<view class="workorder">工单号:{{item.workOrderNum}}</view>
<view class="{{item.operationType === '未联系当事人'?'status-red':item.operationType==='已联系当事人'?'lan':item.operationType === '办理中'?' .status-cycn':item.operationType ==='已办结待审核'?'status-orange':item.operationType =='已审核归档'?'status-grey':'status-grey'}}">
{{item.operationType}}
</view>
</view>
<view class="context">
{{item.eventContent}}
</view>
<view class="flex-x1">
<view class="phonenName">来电人:{{item.name}} {{item.mobile}}</view>
<view class="btn">办理</view>
</view>
</view>
</view>
</scroll-view>
</view>
<van-picker class="picker-bottom"
show-toolbar
wx:if="{{status}}"
columns="{{columns}}"
bind:change="onChange"
bind:cancel="onCancel"
bind:confirm="onConfirm"
/>