importGeo.vue 12.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
<template>
  <div >
    <div v-if="!resultDialog" class="importDiv">
      <el-upload
          class="upload-demo"
          action="#"
          accept=".txt"
          :show-file-list="false"
          :on-change="txtFileChange"
      >
        <!-- <el-button size="small" type="primary">点击上传</el-button>-->
        <div class="fileUpload">
          <div slot="trigger" class="uploadLeft">
            <i class="iconfont iconwenbenwendang"></i>
          </div>
          <div solt="tip" class="uploadRight">
            <div solt="tip" class="title">TXT文本格式</div>
            <div slot="tip" class="el-upload__tip">支持TXT文本格式,点击查看详情<a href="">文本详情</a></div>
          </div>
        </div>
      </el-upload>
      <el-upload
          class="upload-demo"
          action="/api/tx/shpUtils/readShp"
          accept=".zip"
          :show-file-list="false"
          :on-success="shpFileSuccess"
      >
        <!--<el-button size="small" type="primary">点击上传</el-button>-->
        <div class="fileUpload">
          <div slot="trigger" class="uploadLeft">
            <i class="iconfont iconuploadicon03"></i>
          </div>
          <div solt="tip" class="uploadRight">
            <div solt="tip" class="title">ESRI Shape文件格式</div>
            <div slot="tip" class="el-upload__tip">文件包含.shp、.pdf、.shx、.prj等的压缩文件(.zip)</div>
          </div>
        </div>
      </el-upload>
      <el-upload
          class="upload-demo"
          action="https://jsonplaceholder.typicode.com/posts/"
          accept=".dwg,.dxf"
          :show-file-list="false"
          :on-success="cadFileSuccess"
      >
        <!-- <el-button size="small" type="primary">点击上传</el-button>-->
        <div solt="tip" class="fileUpload">
          <div slot="trigger" class="uploadLeft">
            <i class="iconfont icontubiao_daoruCAD"></i>
          </div>
          <div solt="tip" class="uploadRight">
            <div solt="tip" class="title">CAD文件</div>
            <div slot="tip" class="el-upload__tip">支持.dwg、.dxf文件格式</div>
          </div>
        </div>
      </el-upload>
      <el-upload
          class="upload-demo"
          action="/api/tx/excelGeo/readExcel"
          accept=".xls,.xlsx"
          :show-file-list="false"
          :on-success="excelFileSuccess"
      >
        <!--<el-button size="small" type="primary">点击上传</el-button>-->
        <div solt="tip" class="fileUpload">
          <div slot="trigger" class="uploadLeft">
            <i class="iconfont iconexcel"></i>
          </div>
          <div solt="tip"  class="uploadRight">
            <div slot="tip" class="title">Excel文件格式</div>
            <div slot="tip" class="el-upload__tip">.xls、.xlsx版本,点击查看详情<a href="">Excel格式</a></div>
          </div>
        </div>
      </el-upload>
    </div>
    <div v-if="resultDialog">
      <el-form :model="zdForm" ref="zdCheckForm" label-width="100px" size="small" @submit.native.prevent class="demo-ruleForm">
        <el-form-item
            label="宗地"
            prop="zdBsm"
            :rules="[
      { required: true, message: '请选择宗地', trigger: 'change' },
    ]"
        >
          <el-select v-model="zdForm.zdBsm" filterable placeholder="请选择" @change="zdChange">
            <el-option
                v-for="item in resultData"
                :key="item.objectid"
                :label="item.XMMC"
                :value="item">
            </el-option>
          </el-select>
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="submitForm('zdCheckForm')">导入</el-button>
          <el-button @click="cancel('zdCheckForm')">取消</el-button>
        </el-form-item>
      </el-form>
    </div>
  </div>
</template>
<script>
import geoUtils from "@components/lineTree/tx/js/geoUtils";
import featureUpdate from "@libs/map/featureUpdate";
import {addjzd,addjzx} from "@/api/zd"
export default {
  props:{
    propertyInfo:{
      type:Object,
      default:null
    },
    geoInfo:{
      type:Object,
      default:null
    }
  },
  mixins:[geoUtils,featureUpdate],
  data(){
    return{
      resultData:[],
      resultDialog:false,
      zdForm:{
        zdBsm: ""
      },
      currentClickZd:null
    }
  },
  methods:{
    txtFileChange(file, fileList){
      var self = this;
      var fileReader = new FileReader();
      fileReader.readAsText(file.raw);
      fileReader.onload = function (res){
        var content = this.result;
        self.$emit("closeImportDialog");
      }
    },
    shpFileSuccess(response, file, fileList){
      var self = this;
      if(response.success){
        this.resultData = response.result;
        this.resultDialog = true;
      }else {
         this.$message.warning(response.message);
      }
    },
    cadFileSuccess(response, file, fileList){
      debugger
    },
    excelFileSuccess(response, file, fileList){
      var self = this;
      if(response.success){
        var result = response.result;
        var points = [];
        for(var i = 0;i < result.length;i++){
          var point = [];
          point[0] = parseFloat(result[i].x);
          point[1] = parseFloat(result[i].y);
          points.push(point);
        }
        var wkt = "PROJCS[\"XADFZBX\",GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",0.0],PARAMETER[\"False_Northing\",0.0],PARAMETER[\"Central_Meridian\",0.0],PARAMETER[\"Scale_Factor\",1.0],PARAMETER[\"Latitude_Of_Origin\",0.0],UNIT[\"Meter\",1.0]]";
        var geometry = {
          rings:[[points]],
          spatialReference:{
            wkt:wkt
          },
          type:"polygon"
        }
        var graphic = {
          attributes:null,
          geometry:geometry
        }
        if(self.propertyInfo.type == "zd"){
          self.saveZd(graphic);
        }else{
          self.saveZRZ(graphic);
        }
      }else{
        this.$message.warning(response.message);
      }
    },
    //导入
    submitForm(formName){
      //校验完整性 直接调用空间方法 提交空间表
      var self = this;
      this.$refs[formName].validate((valid) => {
        if (valid) {
          var geometry = self.parseWktToArc(self.currentClickZd.wkt);
          geometry.type = "polygon";
          var wkt = "PROJCS[\"XADFZBX\",GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",0.0],PARAMETER[\"False_Northing\",0.0],PARAMETER[\"Central_Meridian\",0.0],PARAMETER[\"Scale_Factor\",1.0],PARAMETER[\"Latitude_Of_Origin\",0.0],UNIT[\"Meter\",1.0]]";
          geometry.spatialReference = {
            wkt:wkt
          }
          var graphic = {
            attributes:self.currentClickZd,
            geometry:geometry
          }
          if(self.propertyInfo.type == "zd"){
           self.saveZd(graphic);
          }else{
            self.saveZRZ(graphic);
          }
        } else {
          console.log('error submit!!');
          return false;
        }
      });
    },
    saveZd(graphic){
      var self = this;
      var points = null,lines = null,
      layer = self.getLayerByName("ZDJBXX");
      var featureUrl = layer.layerUrl.replace("MapServer","FeatureServer");
      featureUrl += "/"+layer.id;
      if(self.geoInfo){
        //替换 生成图像 高亮
        self.geoInfo.attributes.BSM = this.propertyInfo.zdbsm;
        self.geoInfo.attributes.ZDDM = this.propertyInfo.zddm;
        self.geoInfo.attributes.XMMC = this.propertyInfo.mc;
        graphic.attributes = self.geoInfo.attributes;
        self.updateGraphic(featureUrl,graphic,function (res) {
          //保存成功之后生成界址点 界址线
          //生成坐标点
          //跳转至map界面updateResults
          var updResult = res.updateFeatureResults[0];
          if(updResult.objectId){
            var OBJECTID = updResult.objectId;
            points = self.craetJZPoint(graphic);
            self.savejzd(points)
            //生成边框线
            self.createJZLine(graphic,function (res){
              lines = res;
              self.saveJzx(lines);
            });
            self.goMap();
          }
        });
      }else{
        //生成图像  保存
        graphic.attributes = {
          BSM:this.propertyInfo.zdbsm,
          ZDDM:this.propertyInfo.zddm,
          XMMC:this.propertyInfo.mc
        }
        self.addGraphic(featureUrl,graphic,function (res) {
          var addRresult = res.addFeatureResults[0];
          if(addRresult.objectId){
            var OBJECTID = addRresult.objectId;
            points = self.craetJZPoint(graphic);
            self.savejzd(points)
            //生成边框线
            self.createJZLine(graphic,function (res){
              lines = res;
              self.saveJzx(lines);
            });
            self.goMap();
          }
        });
      }
    },
    savejzd(points){
      var savePoints = []
      for(var i = 0;i < points.length;i++){
        var obj = {
          glbsm:this.propertyInfo.zdbsm,
          jzdh:points[i].jzdh,
          sxh:points[i].sxh,
          xzbz:points[i].x,
          yzbz:points[i].y,
          jblx:"",
          jzdlx:""
        }
        savePoints.push(obj);
      }
      addjzd(savePoints).then(res=>{
        if(res.succcess){
          //触发查询接口
          console.log("界址点保存成成功!!!");
        }
      });
    },
    saveJzx(lines){
      var jzxLines = [];
      for(var i = 0;i < lines.length;i++){
        var obj = {
          glbsm: this.propertyInfo.zdbsm,
          qsd:lines[i].startPoint,
          zzd:lines[i].endPoint,
          jzjj:lines[i].distance,
          qdh:lines[i].qdh,
          zdh:lines[i].zdh,
          jzxlx:"",
          jzxwz:"",
          jxxz:"",
          sm:""
        }
        jzxLines.push(obj);
      }
      addjzx(jzxLines).then(res=>{
        if(res.success){
          //触发查询界址线
          console.log("界址线保存成功!!!!!");
        }
      });
    },
    saveZRZ(graphic){
      var self = this;
      var layer = null;
      layer = self.getLayerByName("ZRZ");
      var featureUrl = layer.layerUrl.replace("MapServer","FeatureServer");
      featureUrl += "/"+layer.id;
      if(self.geoInfo){
        self.geoInfo.BSM = this.propertyInfo.bsm;
        graphic.attributes = self.geoInfo;
        //替换 生成图像 高亮
        self.updateGraphic(featureUrl,graphic,function (res) {
            var addRresult = res.updateFeatureResults[0];
            if(addRresult.objectId) {
              self.goMap();
            }
        });
      }else{
        var attributes = {
          BSM:this.propertyInfo.bsm,
          XMMC:this.propertyInfo.xmmc
        }
        graphic.attributes = attributes;
        //生成图像  保存
        self.addGraphic(featureUrl,graphic,function (res) {
            var addRresult = res.addFeatureResults[0];
            if(addRresult.objectId) {
              self.goMap();
            }
        });
      }
    },
    //操作成功跳转
    goMap(){
      var bsm = "", type = this.propertyInfo.type;
      if(type == "zd"){
        bsm = this.propertyInfo.zdbsm;
      }else {
        bsm = this.propertyInfo.bsm;
      }
      this.resultDialog = false;
      this.$emit("closeImportDialog");
      var curretRouterInfo = {
        path: this.$route.path,
        query: this.$route.query
      }
      sessionStorage.setItem("curretRouterInfo", JSON.stringify(curretRouterInfo));
      this.$router.push({
        path: "/viewMap",
        query: {
          bsm: bsm,
          type: this.propertyInfo.type
        }
      });
    },
    //取消
    cancel(){
      this.zdForm.zdBsm = "";
      this.currentClickZd = null;
    },
    //宗地选择发生改变
    zdChange(value){
      this.zdForm.zdBsm = value.XMMC;
      this.currentClickZd = value;
    }

  }
}
</script>
<style scoped lang="less">
.upload-demo{
  line-height: 34px;
}
.fileUpload{
  height: 100%;
  width: 100%;
  .uploadLeft{
    float: left;
    line-height: 61px;
    .iconfont{
      font-size: 42px;
    }
  }
  .uploadRight{
    float: right;
    margin-left: 5px;
    .title{
      text-align: initial;
      font-weight: 600;
    }
    .el-upload__tip{
      margin-top: 0px;
      a{
        color: cornflowerblue;
      }
    }
  }
}

</style>