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.
84 lines
3.2 KiB
84 lines
3.2 KiB
<view class="container">
|
|
<view class="screen">
|
|
<picker
|
|
mode="date"
|
|
model:value="{{ day }}"
|
|
fields="day"
|
|
bind:change="onChange"
|
|
>
|
|
<view class="picker">
|
|
<text>{{ day }}</text>
|
|
<image src="../../../../images/statistics/down.png" mode="widthFix"/>
|
|
</view>
|
|
|
|
</picker>
|
|
<picker
|
|
mode="date"
|
|
model:value="{{ day2 }}"
|
|
fields="day"
|
|
bind:change="onChange2"
|
|
>
|
|
<view class="picker">
|
|
<text>{{ day2 }}</text>
|
|
<image src="../../../../images/statistics/down.png" mode="widthFix"/>
|
|
</view>
|
|
|
|
</picker>
|
|
|
|
<view class="btn" bindtap="onSearch">
|
|
查询
|
|
</view>
|
|
</view>
|
|
<view class="stay-list" wx:if="{{list.length}}">
|
|
<!-- <view class="stay-item" wx:for="{{list}}" bind:tap="gotopage" data-id="{{item.icEventId || item.demandRecId}}">
|
|
<view class="date">{{item.happenTime || item.reportTime}}</view>
|
|
<view class="tit-text">{{item.eventContent || item.content}}</view>
|
|
</view> -->
|
|
<view class="hotline-rate" wx:for="{{list}}" wx:for-index="idx" wx-if="{{idx<showitem}}">
|
|
<view class="name">
|
|
<view class="ranking">{{idx+1}}</view>
|
|
<view class="leader-name" wx-if="{{curVal=='1'}}">{{item.assignOrgLeader || item.assignOrgName}}</view>
|
|
<view class="leader-name" wx-if="{{curVal=='2'}}">{{item.assignOrgName}}</view>
|
|
</view>
|
|
<view class="num">
|
|
<view class="child">
|
|
<view class="lab">收件数</view>
|
|
<view class="val">{{item.total}}</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">未回复</view>
|
|
<view class="val">0</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">不满意</view>
|
|
<view class="val">{{item.notSatisfiedTotal}}</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">未解决</view>
|
|
<view class="val">{{item.unresolveTotal}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="num">
|
|
<view class="child">
|
|
<view class="lab">按时办理率</view>
|
|
<view class="val">{{item.replyRate}}%</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">响应率</view>
|
|
<view class="val">{{item.responseRate}}%</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">满意度</view>
|
|
<view class="val">{{item.satisfiedRate}}%</view>
|
|
</view>
|
|
<view class="child">
|
|
<view class="lab">解决率</view>
|
|
<view class="val">{{item.resolveRate}}%</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="showall" bind:tap="showall" wx-if="{{list.length>3}}" >{{showitem==99999?"收起":"展开"}}</view>
|
|
</view>
|
|
|
|
<no-data wx:else isShow="{{true}}"/>
|
|
</view>
|