Browse Source

feat:修改搜索城市接口和编辑接口参数传参

wangsisi 4 months ago
parent
commit
dc61a478c5

+ 0 - 2
src/api/config.js

@@ -1,6 +1,5 @@
 // let server = "http://127.0.0.1:81/";
 let server = "https://birdseye-api.feiniaotech.sysuimars.cn/"
-let mapServer = "https://birdseye-api.sysuimars.cn/"
 let serverMock = "https://mock.apipark.cn/m1/4662471-4313509-default/"
 // let djiCloudBase = "http://127.0.0.1/";
 let djiCloudBase = "https://djiapi.sysuimars.com/";
@@ -8,7 +7,6 @@ let djiCloudBase = "https://djiapi.sysuimars.com/";
 module.exports = {
     base_url :server + "site/",
     server_mock :serverMock + "site/",
-    base_map_url: mapServer + "mini/",
     dji_cloud_base :djiCloudBase,
     image_url:server+"images/",
     base_img_url2 : "https://birdseye-img-ali-cdn.sysuimars.com/",

+ 1 - 5
src/api/modules/old_mini_map.js

@@ -1,10 +1,6 @@
 const config = require("../config")
 
 module.exports = {
-    treePoint: {
-        url: config.base_map_url + "lz_tree/listByPoint",
-        type: "post",
-    },
     location: {
         url: "/ws/geocoder/v1",
         type: "get"
@@ -18,7 +14,7 @@ module.exports = {
         type: "get"
     },
     getCtiyList: {
-        url: config.base_map_url + "poi/city",
+        url: config.base_url + "poi/city",
         type: "get",
     }
 }

+ 2 - 0
src/views/authentic/authenticMap.js

@@ -417,6 +417,8 @@ class AuthenticMap {
         condition.push(feature.get("address").includes(form.address))
       }
       if(form.farmName != ''){
+        const text = feature.get("farmName")
+        if(text!==form.farmName) return
         condition.push(feature.get("farmName").includes(form.farmName))
       }
       if(form.masterName != ''){

+ 2 - 1
src/views/authentic/index.vue

@@ -208,7 +208,7 @@
             </div>
           </div>
           <div class="edit-footer">
-            <div @click="onCancel()" class="btn cancel">取消</div>
+            <div @click="onCancel" class="btn cancel">取消</div>
             <div @click="onSubmit" class="btn save">保存</div>
           </div>
         </div>
@@ -439,6 +439,7 @@ const onSubmit = () => {
   if (!ruleFormRef.value) return;
   ruleFormRef.value.validate((valid, fields) => {
     if (valid) {
+      formInline.mu = formInline.mu.split('亩')[0]
       VE_API.authentic.saveData(formInline).then((res) => {
         isUpdata.value = false;
         disabledForm.value = true;