| | |
| | | <div class="text"> |
| | | <div class="land-name">{{ item.landName }}</div> |
| | | <div class="land-area"> |
| | | <div class="box">{{ item.landArea>10000?(item.landArea/10000).toFixed(2)+"万":item.landArea}} {{ item.dica }}</div> |
| | | <div class="box">{{ item.landArea}} {{ item.dica }}</div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | import { mapGetters } from "vuex" |
| | | import { getList } from "@/api/land/land" |
| | | import landAdd from "./landAdd" |
| | | import fixed from "@/util/mathHandler" |
| | | export default { |
| | | components: { |
| | | landAdd, |
| | |
| | | const data = res.data.data |
| | | this.page.total = data.total |
| | | this.farmPlanList = data.records |
| | | this.farmPlanList.forEach((e)=>{ |
| | | e.landArea = fixed.fixedNum(e.landArea) |
| | | }) |
| | | }) |
| | | }, |
| | | //进入地图模式 |