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.
91 lines
4.2 KiB
91 lines
4.2 KiB
<view class="housePortrait-container">
|
|
<view class="card">
|
|
<view class="title">
|
|
<text>{{detail.fullName?detail.fullName:'-'}}</text>
|
|
<view class="view" bind:tap="gotopage" data-url="/subpages/addhouse/pages/addhouse/addhouse?type=edit&houseId={{houseId}}">
|
|
编辑
|
|
<image mode="widthFix" src="../../../../images/right.png"></image>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<view class="line">
|
|
<view class="field">房屋类型:{{detail.houseTypeName?detail.houseTypeName:'-'}}</view>
|
|
<view class="field">房屋用途:{{detail.purposeName?detail.purposeName:'-'}}</view>
|
|
<view class="field">房屋状态:{{detail.rentName?detail.rentName:'-'}}</view>
|
|
</view>
|
|
<view class="field">房主姓名:{{detail.ownerName?detail.ownerName:'-'}}</view>
|
|
<view class="field">联系电话:{{detail.ownerPhone?detail.ownerPhone:'-'}}</view>
|
|
<view class="field">房主证件号:{{detail.ownerIdCard?detail.ownerIdCard:'-'}}</view>
|
|
<view class="field">备注:{{detail.remark?detail.remark:'-'}}</view>
|
|
<view class="field">创建时间:{{detail.createdTime?detail.createdTime:'-'}}</view>
|
|
<view class="field">更新时间:{{detail.updatedTime?detail.updatedTime:'-'}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="card">
|
|
<view class="title">
|
|
<text>关系图谱 </text>
|
|
<view class="view" bind:tap="handelClickAddResi">
|
|
新增居民
|
|
<image mode="widthFix" src="../../../../images/right.png"></image>
|
|
</view>
|
|
</view>
|
|
<house-graph wx:if="{{detail}}" bind:getResiId="handleGetResiId" houseId="{{houseId}}" bind:clickGraphNode="clickGraphNode" ></house-graph>
|
|
</view>
|
|
|
|
<view class="card">
|
|
<view class="title">
|
|
<text>业务记录</text>
|
|
</view>
|
|
<BusinessRecord wx:if="{{ywVisible}}" ywData="{{ywData}}" />
|
|
</view>
|
|
|
|
<view class="card">
|
|
<view class="title">
|
|
<text>更新记录</text>
|
|
</view>
|
|
<view style="margin-top: 32rpx; padding:0 12rpx;">
|
|
<view class="logsBox" wx:for="{{logs}}" wx:key="{{item.changeTime}}">
|
|
<view class="item-dian {{index!=0?'item-dian1':''}}">
|
|
<view class="neidian"></view>
|
|
</view>
|
|
<view class="logs-top">
|
|
<view class="logs-top-title">{{item.typeName}}-{{item.operatorName}}</view>
|
|
<view class="logs-top-time">{{item.changeTime}}</view>
|
|
</view>
|
|
<view class="logs-content">
|
|
<view class="logs-content-left">
|
|
<view>
|
|
<text class="logs-content-title">变更前:</text>
|
|
<text class="logs-content-txt">{{item.beforeChange}}</text>
|
|
</view>
|
|
<view>
|
|
<text class="logs-content-title">变更后:</text>
|
|
<text class="logs-content-txt">{{item.afterChange}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="logs-content-right">
|
|
<view>
|
|
<text class="logs-content-title">操作人:</text>
|
|
<text class="logs-content-txt">{{item.operatorName}}</text>
|
|
</view>
|
|
<!-- <view>
|
|
<text class="logs-content-title">备注:</text>
|
|
<text class="logs-content-txt">{{item.resiName}}</text>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<no-data isShow="{{logs.length===0}}" wx:if="{{logs.length===0}}"></no-data>
|
|
</view>
|
|
|
|
</view>
|
|
<view class="bto_btn">
|
|
<view class="btn" bind:tap="toEvent">上报诉求</view>
|
|
<view class="btn" bind:tap="toWebView" wx:if="{{agencyLevel!=='street'}}">
|
|
满意度调查</view>
|
|
<!-- -->
|
|
<view class="btn blue" bind:tap="handelTopunchCard">走访打卡</view>
|
|
</view>
|