|
@@ -14,7 +14,7 @@
|
|
|
:key="index1"
|
|
|
>
|
|
|
<template slot="title">
|
|
|
- 地块编号{{ item1.dkbm }} ({{ item1.area.toFixed(0) }})
|
|
|
+ 地块编号{{ item1.dkbm }} ({{ item1.area || 0 }})亩
|
|
|
<span class="tools">
|
|
|
<i
|
|
|
class="header-icon el-icon-place"
|
|
@@ -29,7 +29,7 @@
|
|
|
<div class="collapseCon">
|
|
|
<p class="oneItem">
|
|
|
<span>{{ item1.kzxxgydmc }}</span>
|
|
|
- <span>{{ (item1.area * 0.0015).toFixed(2) }}亩</span>
|
|
|
+ <span>{{ item1.area || 0 }}亩</span>
|
|
|
</p>
|
|
|
<p style="color: #cddeeb">
|
|
|
<img src="/static/images/ghzc/iconSun.png" />
|
|
@@ -58,7 +58,7 @@
|
|
|
>
|
|
|
<template slot="title">
|
|
|
<!-- 地块编号B_P_123 -->
|
|
|
- 地块编号{{ item.dkbm }} ({{ item.area.toFixed(0) }})
|
|
|
+ 地块编号{{ item.dkbm }} ({{ item.area || 0 }})亩
|
|
|
<span class="tools">
|
|
|
<i
|
|
|
class="header-icon el-icon-place"
|
|
@@ -73,7 +73,7 @@
|
|
|
<div class="collapseCon">
|
|
|
<p class="oneItem">
|
|
|
<span>{{ item.kzxxgydmc }}</span>
|
|
|
- <span>{{ (item.area * 0.0015).toFixed(2) }}亩</span>
|
|
|
+ <span>{{ item.area || 0}}亩</span>
|
|
|
</p>
|
|
|
<p style="color: #cddeeb">
|
|
|
<!-- <i class="iconSun"></i> -->
|