house.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="">
  3. <WhInput :name="'产权人'"></WhInput>
  4. <WhInput :name="'房产证号'"></WhInput>
  5. <WhInput :name="'房产城市'" disabled is_select></WhInput>
  6. <WhInput :name="'房产地址'" disabled is_select></WhInput>
  7. <WhInput :name="'房屋用途'" disabled is_select></WhInput>
  8. <WhInput :name="'建成年份'" disabled is_select></WhInput>
  9. <WhInput :name="'材料费'"></WhInput>
  10. <WhInput :name="'建筑面积'"></WhInput>
  11. <view class=" p-tb30 bor-bottom-1">
  12. <view class="wh-text size-28">房产证件<text></text> </view>
  13. <view class="row-c flex m-t20 m-b10" style="flex-wrap: wrap;">
  14. <image class="wh-110 m-r16" src="/static/img/logo.png" mode="aspectFill" v-for="(item,index) in 2"
  15. :key="index">
  16. </image>
  17. <image class="wh-110" src="/static/img/logo.png" mode="aspectFill"></image>
  18. </view>
  19. </view>
  20. <WhInput :name="'备注'" :is_border="false"></WhInput>
  21. <button class="size-26 r-10 button-color house-button m-t30" hover-class="is-hover"
  22. @click="onAddHouse">+添加房产</button>
  23. </view>
  24. </template>
  25. <script>
  26. import WhInput from "@/components/en-from/en-input/wh-input.vue"
  27. export default {
  28. components: {
  29. WhInput
  30. },
  31. props: {
  32. },
  33. data() {
  34. return {}
  35. },
  36. methods: {
  37. onAddHouse() {}
  38. }
  39. }
  40. </script>
  41. <style>
  42. .house-button {
  43. height: 70rpx;
  44. line-height: 70rpx;
  45. background: #FFFFFF;
  46. border: 1rpx solid #0FB160;
  47. }
  48. </style>