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.
49 lines
2.3 KiB
49 lines
2.3 KiB
<view class="screen">
|
|
<picker
|
|
model:value="{{ orgIndex }}"
|
|
range="{{orgList}}"
|
|
range-key="label"
|
|
data-key="orgIndex"
|
|
bindchange="setVal"
|
|
>
|
|
<view class="picker">
|
|
<text>{{ orgIndex >= 0 ? orgList[orgIndex].label : '按组织' }}</text>
|
|
<image src="../../images/down.png" mode="widthFix"/>
|
|
</view>
|
|
|
|
</picker>
|
|
<input placeholder="按姓名" bind:input="setVal" data-key="name" class="picker-type"/>
|
|
<input placeholder="按电话" bind:input="setVal" data-key="mobile" class="picker-type"/>
|
|
<view class="btn" bind:tap="search">筛选</view>
|
|
</view>
|
|
|
|
<view class="qz-container">
|
|
<view class="qz-list">
|
|
<view class="qz-item" wx:for="{{list}}" wx:key="{{index}}">
|
|
<view class="user-info">
|
|
<view class="name">{{item.name}} {{item.mobile}}</view>
|
|
<view class="address">{{item.agencyName?item.agencyName:''}}</view>
|
|
</view>
|
|
<view class="num-list">
|
|
<view class="num-item" bind:tap="gotopage" data-url="{{'/subpages/statistics/pages/sjwjj/sjwjj?id='+item.reportUserId+'&name='+item.name+'&mobile='+item.mobile+'&agencyName='+item.agencyName}}">
|
|
<view class="txt">
|
|
<text>事件未解决数</text>
|
|
</view>
|
|
<view class="num">{{item.eventCount}}</view>
|
|
</view>
|
|
<view class="num-item" bind:tap="gotopage" data-url="{{'/subpages/statistics/pages/xqwmz/xqwmz?id='+item.reportUserId+'&name='+item.name+'&mobile='+item.mobile+'&agencyName='+item.agencyName}}">
|
|
<view class="txt">
|
|
<text>需求未满足数</text>
|
|
</view>
|
|
<view class="num">{{item.demandCount}}</view>
|
|
</view>
|
|
<view class="num-item" bind:tap="gotopage" data-url="{{'/subpages/statistics/pages/yxwxfw/yxwxfw?id='+item.reportUserId+'&name='+item.name+'&mobile='+item.mobile+'&agencyName='+item.agencyName}}">
|
|
<view class="txt">
|
|
<text>应享未享服务数</text>
|
|
</view>
|
|
<view class="num">{{item.serviceCount}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|