上饶市警务平台后台管理前端
zhongrj
2023-02-18 f3f40bb001079b2668d0e4548b7154671fcd8889
src/views/security/security.vue
@@ -480,11 +480,18 @@
      this.chosePoint.address = data
    },
    confirmLonLat(){
      this.form.longitude =  this.chosePoint.longitude
      this.form.latitude =  this.chosePoint.latitude
      this.form.place = this.chosePoint.address
      this.point = "POINT("+this.form.longitude +" "+this.form.latitude+")"
      this.placeBox = false
      if(this.chosePoint.longitude){
        this.form.longitude =  this.chosePoint.longitude
        this.form.latitude =  this.chosePoint.latitude
        this.form.place = this.chosePoint.address
        this.point = "POINT("+this.form.longitude +" "+this.form.latitude+")"
        this.placeBox = false
      }else {
        this.$alert('该点没有位置信息,请重新选点!', '提示', {
          confirmButtonText: '确定',
        });
      }
    }
  }
}