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.
 

120 lines
4.1 KiB

<view class="resident-container">
<view class="card">
<view class="title">居民档案</view>
<view class="user-info">
<view class="name">
{{userInfo.name}} {{userInfo.mobile}}
<text class="tag red" wx-if="{{userInfo.riskyFlag == 1}}">风险</text>
</view>
<view class="address">{{userInfo.gridName}} {{userInfo.fullName}}</view>
</view>
<view class="table">
<view class="tr">
<view class="th">姓名</view>
<view class="th" style="flex:2">与本人关系</view>
<view class="th">性别</view>
<view class="th">年龄</view>
</view>
<view class="tr" wx:for="{{relationship}}" wx:key="{{index}}">
<view class="td">{{item.name}}</view>
<view class="td" style="flex:2">{{item.houseHolderRel ? item.houseHolderRel : ''}}</view>
<view class="td">{{item.gender == 2?'男':item.gender == 1?'女':item.gender === '0'?'未知':''}}</view>
<view class="td">{{item.age}} <image mode="widthFix" class="table-right-icon" src="../../images/right2.png" /></view>
</view>
</view>
</view>
<view class="card">
<view class="title">居民画像</view>
<view class="portrait">
<view class="bg">
<image src="../../images/jmhx_center.png" mode="widthFix"/>
</view>
<view class="tags">
<view class="tag" wx-if="{{tags.age}}">
<view class="text">{{tags.age}}岁</view>
</view>
<view class="tag" wx-if="{{tags.category1}}">
<view class="text">{{tags.category1}}</view>
</view>
<view class="tag" wx-if="{{tags.category2}}">
<view class="text">{{tags.category2}}</view>
</view>
<view class="tag" wx-if="{{tags.monthIncomeLevel}}">
<view class="text">{{tags.monthIncomeLevel}}</view>
</view>
<view class="tag" wx-if="{{tags.cultureLevel}}">
<view class="text">{{tags.cultureLevel}}</view>
</view>
<view class="tag" wx-if="{{tags.marriage}}">
<view class="text">{{tags.marriage}}</view>
</view>
<view class="tag" wx-if="{{tags.gender || tags.gender === '0'}}">
<view class="text">{{tags.gender == 2?'男':tags.gender == 1?'女':tags.gender === '0'?'未知':''}}</view>
</view>
</view>
</view>
</view>
<view class="card">
<view class="title">历史及潜在不满意事项</view>
<view class="num-list">
<view class="num-item">
<view class="txt">
<text>12345投诉</text>
</view>
<view class="num">{{event12345Num}}</view>
</view>
<view class="num-item">
<view class="txt">
<text>省满意度调查</text>
</view>
<view class="num">{{provinceSatisfactionNum}}</view>
</view>
<view class="num-item">
<view class="txt">
<text>社区满意度自查</text>
</view>
<view class="num">{{selfInspectNum}}</view>
</view>
<view class="num-item">
<view class="txt">
<text>事件未解决
的次数</text>
</view>
<view class="num">{{unSolvedNum}}</view>
</view>
<view class="num-item">
<view class="txt">
<text>需求未满足
的次数</text>
</view>
<view class="num">{{unFinishNum}}</view>
</view>
<view class="num-item">
<view class="txt">
<text>应享未享服务
的次数</text>
</view>
<view class="num">{{noServiceNum}}</view>
</view>
</view>
</view>
<view class="card">
<view class="title">回访记录</view>
<view class="log-list">
<view class="log-item" wx:for="{{logList}}" wx:key="{{index}}">
<view>
<view class="user">
<view class="tag blue">{{item.followUpWay}}</view>
<view class="name">{{item.followPersonName}}({{item.roleNames}})</view>
</view>
<view class="date">{{item.followTime}}</view>
</view>
<image src="../../../images/right.png" mode="widthFix" class="icon"/>
</view>
</view>
</view>
</view>