sfyd.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view class="content">
  3. <view class="item">
  4. <text class="title">项目名称</text>
  5. <text class="val">
  6. {{ objs['项目名称'] }}
  7. </text>
  8. </view>
  9. <view class="item">
  10. <text class="title">土地编号</text>
  11. <text class="val">
  12. {{ objs['新增调查地'] }}
  13. </text>
  14. </view>
  15. <view class="item">
  16. <text class="title">用地面积</text>
  17. <text class="val">
  18. {{ objs['总用地面积'] && (objs['总用地面积'] * 0.0015).toFixed(2) }} 亩
  19. </text>
  20. </view>
  21. <view class="item">
  22. <text class="title">行政区划</text>
  23. <text class="val">
  24. {{ objs['所在区'] }}
  25. </text>
  26. </view>
  27. <view class="item">
  28. <text class="title">建设单位</text>
  29. <text class="val">
  30. {{ objs['建设单位'] }}
  31. </text>
  32. </view>
  33. <view class="item">
  34. <text class="title">用途</text>
  35. <text class="val">
  36. {{ objs['用途'] }}
  37. </text>
  38. </view>
  39. <view class="item">
  40. <text class="title">实际用途</text>
  41. <text class="val">
  42. {{ objs['实际用途'] }}
  43. </text>
  44. </view>
  45. <view class="item">
  46. <text class="title">容积率</text>
  47. <text class="val">
  48. {{ objs['容积率'] }}
  49. </text>
  50. </view>
  51. <view class="item">
  52. <text class="title">不动产单元号</text>
  53. <text class="val">
  54. {{ objs['不动产单元'] }}
  55. </text>
  56. </view>
  57. <view class="item">
  58. <text class="title">建设情况</text>
  59. <text class="val">
  60. {{ objs['建设情况'] }}
  61. </text>
  62. </view>
  63. <view class="item">
  64. <text class="title">数据来源</text>
  65. <text class="val">
  66. {{ objs['数据来源'] }}
  67. </text>
  68. </view>
  69. <view class="item">
  70. <text class="title">土地坐落</text>
  71. <text class="val">
  72. {{ objs['坐落'] }}
  73. </text>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. props: {
  80. objs: {
  81. type: Object,
  82. default(){
  83. return {}
  84. }
  85. }
  86. },
  87. data() {
  88. return {
  89. }
  90. },
  91. methods: {
  92. }
  93. }
  94. </script>
  95. <style lang="scss" scoped>
  96. @import '../common.scss';
  97. </style>