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.

84 lines
3.9 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}}" 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;">
1 year ago
<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">
1 year ago
<view class="logs-content-left">
1 year ago
<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>
1 year ago
<view class="logs-content-right">
1 year ago
<view>
<text class="logs-content-title">操作人:</text>
<text class="logs-content-txt">{{item.operatorName}}</text>
</view>
<!-- <view>
1 year ago
<text class="logs-content-title">备注:</text>
<text class="logs-content-txt">{{item.resiName}}</text>
</view> -->
1 year ago
</view>
</view>
</view>
</view>
1 year ago
<no-data isShow="{{logs.length===0}}" wx:if="{{logs.length===0}}"></no-data>
</view>
1 year ago
</view>