|
@@ -168,7 +168,7 @@
|
|
|
<el-input v-model="formInline.createDate" clearable disabled />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="农场面积">
|
|
|
- <el-input v-model="formInline.area" disabled clearable />
|
|
|
+ <el-input v-model="formInline.mu" disabled clearable />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="作物物种" prop="speciesTypeName">
|
|
|
<el-input
|
|
@@ -239,7 +239,7 @@
|
|
|
<el-table-column property="createDate" label="创建时间" width="170" />
|
|
|
<el-table-column property="mu" label="农场面积">
|
|
|
<template #default="scope">
|
|
|
- <span>{{ scope.row.mu.toFixed(2) }}亩</span>
|
|
|
+ <span>{{ scope.row.mu }}亩</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column property="speciesTypeName" label="作物物种" />
|
|
@@ -382,7 +382,7 @@ const initForm = {
|
|
|
address: "",
|
|
|
farmName: "",
|
|
|
createDate: "",
|
|
|
- area: "",
|
|
|
+ mu: "",
|
|
|
speciesTypeName: "",
|
|
|
masterName: "",
|
|
|
masterTel: "",
|
|
@@ -583,7 +583,7 @@ const getDetailsData = (id) => {
|
|
|
"YYYY-mm-dd HH:MM:SS"
|
|
|
);
|
|
|
updateFormInline({ ...data });
|
|
|
- formInline.area = data.mu.toFixed(2) + "亩";
|
|
|
+ formInline.mu = data.mu||0 + "亩";
|
|
|
|
|
|
// 经纬度列表
|
|
|
let arr = JSON.parse(data.points);
|
|
@@ -598,23 +598,13 @@ const updatePointList = () => {
|
|
|
const { geometryArr, area } = authenticMap.getAreaGeometry();
|
|
|
const lastItem = geometryArr[geometryArr.length - 1];
|
|
|
formInline.geom = lastItem.featureWkt;
|
|
|
- formInline.area = area + "亩";
|
|
|
+ formInline.mu = area + "亩";
|
|
|
let result = parseMultiPolygon(lastItem.featureWkt);
|
|
|
result.pop();
|
|
|
pointList.value = result;
|
|
|
};
|
|
|
|
|
|
watchEffect(() => {
|
|
|
- // isRefresh.value = true
|
|
|
- // if (mapData.isEdit && mapData.selectPointArr.length < 2&& isRefresh.value) {
|
|
|
- // isEdit.value = true;
|
|
|
- // disabledForm.value = false;
|
|
|
- // isUpdata.value = true;
|
|
|
- // formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
|
|
|
- // updatePointList();
|
|
|
- // authenticMap.startModify();
|
|
|
- // }
|
|
|
-
|
|
|
if (mapData.isEditArea) {
|
|
|
isUpdata.value = false;
|
|
|
updatePointList();
|