| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="">
- <WhInput :name="'产权人'"></WhInput>
- <WhInput :name="'房产证号'"></WhInput>
- <WhInput :name="'房产城市'" disabled is_select></WhInput>
- <WhInput :name="'房产地址'" disabled is_select></WhInput>
- <WhInput :name="'房屋用途'" disabled is_select></WhInput>
- <WhInput :name="'建成年份'" disabled is_select></WhInput>
- <WhInput :name="'材料费'"></WhInput>
- <WhInput :name="'建筑面积'"></WhInput>
- <view class=" p-tb30 bor-bottom-1">
- <view class="wh-text size-28">房产证件<text></text> </view>
- <view class="row-c flex m-t20 m-b10" style="flex-wrap: wrap;">
- <image class="wh-110 m-r16" src="/static/img/logo.png" mode="aspectFill" v-for="(item,index) in 2"
- :key="index">
- </image>
- <image class="wh-110" src="/static/img/logo.png" mode="aspectFill"></image>
- </view>
- </view>
- <WhInput :name="'备注'" :is_border="false"></WhInput>
- <button class="size-26 r-10 button-color house-button m-t30" hover-class="is-hover"
- @click="onAddHouse">+添加房产</button>
- </view>
- </template>
- <script>
- import WhInput from "@/components/en-from/en-input/wh-input.vue"
- export default {
- components: {
- WhInput
- },
- props: {
- },
- data() {
- return {}
- },
- methods: {
- onAddHouse() {}
- }
- }
- </script>
- <style>
- .house-button {
- height: 70rpx;
- line-height: 70rpx;
- background: #FFFFFF;
- border: 1rpx solid #0FB160;
- }
- </style>
|