Browse Source

fix:修改确权页面面积显示不正确问题

wangsisi 4 months ago
parent
commit
4be3770f1d
4 changed files with 10 additions and 20 deletions
  1. 2 2
      src/router/mainRoutes.js
  2. 2 2
      src/utils/ol-map/Map.js
  3. 1 1
      src/views/Login.vue
  4. 5 15
      src/views/authentic/index.vue

+ 2 - 2
src/router/mainRoutes.js

@@ -8,8 +8,8 @@
  */
 export default [
     {
-        path: "/index",
-        name: "Index",
+        path: "/home",
+        name: "Home",
         // component: () => import("@/views/home/index.vue"),
         component: () => import("@/views/authentic/index.vue"),
     },

+ 2 - 2
src/utils/ol-map/Map.js

@@ -349,8 +349,8 @@ class Map {
 			text: new Text({
 				font: "16px sans-serif",
 				text: area.toFixed(2) + "亩",
-				// offsetX: 28,
-				// offsetY: -100,
+				offsetX: 28,
+				offsetY: -100,
 				fill: new Fill({ color: "#fff" }), // 字体颜色
 			}),
 		})

+ 1 - 1
src/views/Login.vue

@@ -114,7 +114,7 @@ const onSubmit = () => {
                 res.data["pwd"] = undefined
                 store.commit(`app/${SET_USER_INFO}`, JSON.stringify(res.data));
                 success.value = true;
-                router.push({ name: "Index" });
+                router.push({ name: "Home" });
             }
         } else {
             return;

+ 5 - 15
src/views/authentic/index.vue

@@ -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();