123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <view class="content">
- <view class="item">
- <text class="title">项目名称</text>
- <text class="val">
- {{ objs['项目名称'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">土地编号</text>
- <text class="val">
- {{ objs['新增调查地'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">用地面积</text>
- <text class="val">
- {{ objs['总用地面积'] && (objs['总用地面积'] * 0.0015).toFixed(2) }} 亩
- </text>
- </view>
- <view class="item">
- <text class="title">行政区划</text>
- <text class="val">
- {{ objs['所在区'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">建设单位</text>
- <text class="val">
- {{ objs['建设单位'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">用途</text>
- <text class="val">
- {{ objs['用途'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">实际用途</text>
- <text class="val">
- {{ objs['实际用途'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">容积率</text>
- <text class="val">
- {{ objs['容积率'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">不动产单元号</text>
- <text class="val">
- {{ objs['不动产单元'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">建设情况</text>
- <text class="val">
- {{ objs['建设情况'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">数据来源</text>
- <text class="val">
- {{ objs['数据来源'] }}
- </text>
- </view>
- <view class="item">
- <text class="title">土地坐落</text>
- <text class="val">
- {{ objs['坐落'] }}
- </text>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- objs: {
- type: Object,
- default(){
- return {}
- }
- }
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '../common.scss';
- </style>
|