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.
40 lines
1.6 KiB
40 lines
1.6 KiB
2 years ago
|
<Head isBack text="{{tabList[type].label}}"/>
|
||
|
<view class="statistics-container">
|
||
|
<view class="card">
|
||
|
<view class="titles" wx:if="{{type === 'addressEvent' || type === 'addressMobileEvents'}}">
|
||
|
地点:{{data.address}}
|
||
|
</view>
|
||
|
<view class="titles" wx:if="{{type === 'mobileEvent'}}">
|
||
|
姓名:{{data.name}}
|
||
|
</view>
|
||
|
<view class="sub-tit" wx:if="{{type === 'mobileEvent'}}">
|
||
|
联系电话:{{data.mobile}}
|
||
|
</view>
|
||
|
<view class="sub-tit" wx:if="{{type === 'addressEvent'}}">
|
||
|
类别:{{data.categoryName}}
|
||
|
</view>
|
||
|
<view class="sub-tit">
|
||
|
投诉次数:<text class="count-num">{{data.amount}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="card">
|
||
|
<view class="event-list">
|
||
|
<view class="event-item" wx:for="{{list}}" wx:key="index" bind:tap="gotoPage" data-id="{{item.icEventId}}">
|
||
|
<view>
|
||
|
<view class="userInfo">
|
||
|
<view class="name">{{item.name}} {{item.mobile}}</view>
|
||
|
<view class="status">{{item.statusName}}</view>
|
||
|
</view>
|
||
|
<view class="address">
|
||
|
<view class="grid">{{item.gridName}}</view>
|
||
|
<view class="time">{{item.createdTime}}</view>
|
||
|
</view>
|
||
|
<view class="desc">
|
||
|
{{item.eventContent}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|