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.
244 lines
8.6 KiB
244 lines
8.6 KiB
<view class="g-bd">
|
|
<view class="m-fm">
|
|
<view class="fm">
|
|
<view class="fm-title">家庭房屋基本信息</view>
|
|
<view class="item-list">
|
|
|
|
<!-- 所属组织 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">所属组织</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.communityName ? fmData.communityName : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 网格 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">网格</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.gridName ? fmData.gridName : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 小区 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">小区</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.plotName ? fmData.plotName : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 楼栋 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">楼栋</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.buildingName ? fmData.buildingName : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 单元号 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">单元号</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.unit ? fmData.unit : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">单元号</view>
|
|
</view>
|
|
<view class="value">
|
|
<picker class="picker"
|
|
range="{{buildingunitlist}}"
|
|
range-key="label"
|
|
bindchange="inputSyncPicker">
|
|
<view class="picker-text" wx:if="{{fmData.unitName}}">{{fmData.unitName}}</view>
|
|
<view class="picker-text z-weak" wx:else>请选择</view>
|
|
<image class="menu-arrow" src="/subpages/family/images/arrow.png" mode="aspectFit" />
|
|
</picker>
|
|
</view>
|
|
</view> -->
|
|
<!-- 门牌号 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">门牌号</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
{{fmData.roomNo ? fmData.roomNo : ''}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">门牌号</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
<input type="text"
|
|
value="{{ fmData.doorName }}"
|
|
placeholder="请输入"
|
|
placeholder-class="z-ph"
|
|
data-fm="fmData"
|
|
data-name="doorName"
|
|
bindinput="inputSync"
|
|
cursor-spacing="14"
|
|
maxlength="100" />
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
|
|
<view class="fm">
|
|
<view class="item-list">
|
|
<!-- 房屋类型 -->
|
|
<view class="item" style="border-top: 0rpx">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">房屋类型</view>
|
|
</view>
|
|
<view class="value">
|
|
<picker class="picker"
|
|
range="{{houseType}}"
|
|
range-key="label"
|
|
bindchange="houseTypePicker" value="{{houseTypeIndex}}">
|
|
<view class="picker-text" wx:if="{{fmData.roomType}}">{{houseType[houseTypeIndex].label}}</view>
|
|
<view class="picker-text z-weak" wx:else>请选择</view>
|
|
<image class="menu-arrow" src="/subpages/family/images/arrow.png" mode="aspectFit" />
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<!-- 房屋用途 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">房屋用途</view>
|
|
</view>
|
|
<view class="value">
|
|
<picker class="picker"
|
|
range="{{purposeArr}}"
|
|
range-key="label"
|
|
bindchange="housePurposePicker" value="{{purposeArrIndex}}">
|
|
<view class="picker-text" wx:if="{{fmData.roomUse}}">{{purposeArr[purposeArrIndex].label}}</view>
|
|
<view class="picker-text z-weak" wx:else>请选择</view>
|
|
<image class="menu-arrow" src="/subpages/family/images/arrow.png" mode="aspectFit" />
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<!-- 居住情况 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="must">*</view>
|
|
<view class="field-text">居住情况</view>
|
|
</view>
|
|
<view class="value">
|
|
<picker class="picker"
|
|
range="{{rentFlagArr}}"
|
|
range-key="label"
|
|
bindchange="houseStatePicker" value="{{rentFlagArrIndex}}">
|
|
<view class="picker-text" wx:if="{{fmData.livingStatus}}">{{rentFlagArr[rentFlagArrIndex].label}}</view>
|
|
<view class="picker-text z-weak" wx:else>请选择</view>
|
|
<image class="menu-arrow" src="/subpages/family/images/arrow.png" mode="aspectFit" />
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<!-- 姓名 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">房主姓名</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
<input type="text"
|
|
value="{{ fmData.ownerName }}"
|
|
placeholder="请输入"
|
|
placeholder-class="z-ph"
|
|
bindinput="ownerNameSync"
|
|
cursor-spacing="14"
|
|
maxlength="100" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 身份证号 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">身份证号</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
<input type="text"
|
|
value="{{ fmData.idCard }}"
|
|
placeholder="请输入"
|
|
placeholder-class="z-ph"
|
|
bindinput="ownerIdCardSync"
|
|
cursor-spacing="14"
|
|
maxlength="100"
|
|
bindblur="handleValidBlur" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 联系电话 -->
|
|
<view class="item">
|
|
<view class="field">
|
|
<view class="field-text">联系电话</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
<input type="number"
|
|
value="{{ fmData.mobile ? fmData.mobile : '' }}"
|
|
placeholder="请输入"
|
|
placeholder-class="z-ph"
|
|
bindinput="ownerPhoneSync"
|
|
cursor-spacing="14"
|
|
maxlength="100" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 备注 -->
|
|
<!-- <view class="item">
|
|
<view class="field">
|
|
<view class="field-text">备注</view>
|
|
</view>
|
|
<view class="value">
|
|
<view class="input">
|
|
<input type="text"
|
|
value="{{ fmData.remark && fmData.remark != 'null' ? fmData.remark : '' }}"
|
|
placeholder="请输入"
|
|
placeholder-class="z-ph"
|
|
bindinput="remarkSync"
|
|
cursor-spacing="14"
|
|
maxlength="100" />
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
|
|
<view class="operate">
|
|
<view class="btn" style="opacity:1;" bind:tap="editSubmit">确认修改</view>
|
|
</view>
|
|
</view>
|
|
</view>
|