浏览代码

modify locationflag interface add delete imageinterface

haojianlong 5 年之前
父节点
当前提交
872687244b

+ 6 - 0
src/api/scan/request.js

@@ -1204,4 +1204,10 @@ export function queryLocationPoint(param, success) {
 export function updateLocationPoint(param, success) {
     let url = `${baseUrl}/datacenter/location-point/update`;
     http.postJson(url, param, success)
+}
+
+//扫楼作业-位置标签-删除图片
+export function deleteLocationImg(param, success) {
+    let url = `${baseUrl}/datacenter/location-point/delete-image`;
+    http.postJson(url, param, success)
 }

+ 4 - 17
src/views/data_admin/buildGraphy/graphyCanvas-copy.vue

@@ -45,6 +45,7 @@ import {
   updateBusiness
 } from "@/api/scan/request";
 import { mapGetters, mapActions } from "vuex";
+import { SPoint } from '@sybotan-web/base/lib';
 let colorArr = [
   "#F9C3C3", "#FFD1BF", "#FFF3BF", "#D8F7C6",
   "#C6F2F6", "#DCE3C0", "#FAE6C9", "#E3D7F7",
@@ -462,10 +463,8 @@ export default {
     },
     // 定位
     locationGraphy(point) {
-      // 移动画布
-      this.view.pos.x = -point.X * this.view.scale + this.view.width / 2;
-      this.view.pos.y = -point.Y * this.view.scale + this.view.height / 2;
-      this.view.scale = this.view.scale;
+      // 65886.9,101198
+      // this.view.origin = new SPoint((this.view.width / 2) - (65886.9 * this.view.scale),(this.view.height / 2) - (101198 * this.view.scale))
     },
     //点击按钮
     addPoint(item) {
@@ -664,19 +663,7 @@ export default {
     },
     //调整到合适比例
     suitableSize() {
-      //获取中心点
-      let rect = this.view.scene.worldRect();
-      //计算缩放比例
-      this.view.scale = Math.min(
-        this.view.width / (rect.width * 1.2),
-        this.view.height / (rect.height * 1.2)
-      );
-      // 移动画布
-      this.view.pos.x =
-        (-(rect.right + rect.left) / 2) * this.view.scale + this.view.width / 2;
-      this.view.pos.y =
-        (-(rect.bottom + rect.top) / 2) * this.view.scale +
-        this.view.height / 2;
+      this.view.fitSceneToView();
     },
     //调整到小比例
     smallSize() {

+ 63 - 68
src/views/data_admin/buildGraphy/graphyTabs.vue

@@ -29,9 +29,7 @@ getLocation 定位
     <el-dialog title="详情" :visible.sync="pointShow" width="500px">
       <div class="qrcode">
         <div class="qrcode-view">
-          <img
-            :src="'/ScanBuilding/service/qrcode/point?projectId=' + projectId + '&pointId=' + pointDetails.PointId + '&FloorId=' + pointDetails.FloorId + '&width=200&height=200'"
-            alt="点位标签二维码">
+          <img :src="'/api/scanbuilding-2/service/qrcode/zxing?Id=' + pointDetails.Id + '&width=200&height=200'" alt="点位标签二维码">
         </div>
         <div class="point-edit">
           <p>
@@ -40,11 +38,10 @@ getLocation 定位
             -({{pointDetails.X}},{{pointDetails.Y}})
           </p>
           <div>
-            <form-input :width="100" @change="changeInput" :value="pointDetails.PointName" :keys="'PointName'" :label="'点位标签'" :isRule="false">
+            <form-input :width="100" @change="changeInput" :value="pointDetails.Name" :keys="'Name'" :label="'点位标签'" :isRule="false">
             </form-input>
-            <form-input :width="100" @change="changeInput" :value="pointDetails.PointLocalId" :keys="'PointLocalId'" :label="'点位本地编码'"
+            <form-input :width="100" @change="changeInput" :value="pointDetails.LocalId" :keys="'LocalId'" :label="'点位本地编码'"
               :isRule="false"></form-input>
-            <!-- <form-input></form-input> -->
           </div>
         </div>
       </div>
@@ -53,7 +50,7 @@ getLocation 定位
         <ul>
           <li>
             <span>点位标签ID</span>
-            <span>{{pointDetails.PointId}}</span>
+            <span>{{pointDetails.Id}}</span>
           </li>
           <li>
             <span>模型ID</span>
@@ -81,7 +78,7 @@ getLocation 定位
         <template v-for="(item,index) in installPic">
           <div class="point-image" :key="index">
             <i class="el-icon-delete" @click="delImage(index,installPic)"></i>
-            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.key +'&width=200&height=200'" alt>
+            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.Key +'&width=200&height=200'" alt>
           </div>
         </template>
         <load-img keyName="安装位置" @getKey="getKey"></load-img>
@@ -91,7 +88,7 @@ getLocation 定位
         <template v-for="(item,index) in panorama">
           <div class="point-image" :key="index">
             <i class="el-icon-delete" @click="delImage(index,panorama)"></i>
-            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.key +'&width=200&height=200'" alt>
+            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.Key +'&width=200&height=200'" alt>
           </div>
         </template>
         <load-img keyName="全景照片" @getKey="getKey"></load-img>
@@ -101,7 +98,7 @@ getLocation 定位
         <template v-for="(item,index) in rimPic">
           <div class="point-image" :key="index">
             <i class="el-icon-delete" @click="delImage(index,rimPic)"></i>
-            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.key +'&width=200&height=200'" alt>
+            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.Key +'&width=200&height=200'" alt>
           </div>
         </template>
         <load-img keyName="周边照片" @getKey="getKey"></load-img>
@@ -111,7 +108,7 @@ getLocation 定位
         <template v-for="(item,index) in videoPic">
           <div class="point-image" :key="index">
             <i class="el-icon-delete" @click="delImage(index,videoPic)"></i>
-            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.key +'&width=200&height=200'" alt>
+            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.Key +'&width=200&height=200'" alt>
           </div>
         </template>
         <load-img keyName="视频" @getKey="getKey"></load-img>
@@ -121,7 +118,7 @@ getLocation 定位
         <template v-for="(item,index) in elsePic">
           <div class="point-image" :key="index">
             <i class="el-icon-delete" @click="delImage(index,elsePic)"></i>
-            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.key +'&width=200&height=200'" alt>
+            <img :src="'/image-service/common/image_get?systemId=dataPlatform&key='+ item.Key +'&width=200&height=200'" alt>
           </div>
         </template>
         <load-img keyName="其他照片" @getKey="getKey"></load-img>
@@ -132,9 +129,10 @@ getLocation 定位
 
 <script>
 import {
-  getPT, //获取点位列表
-  getPoint, //获取点位详情
-  updatePoint //修改点位
+  updatePoint, //修改点位
+  queryLocationPoint, //数据中心-查询点位标签
+  updateLocationPoint, //数据中心更新点位
+  deleteLocationImg, //数据中心-删除图片
 } from "@/api/scan/request";
 import formInput from "./lib/formInput";
 import loadImg from "./lib/uploadImg";
@@ -158,7 +156,6 @@ export default {
       pointData: [], //tab为本层的点位标签
       pointShow: false, //标签详情的弹窗
       pointDetails: {}, //标签详情信息对象
-      // projId: this.$route.query.projId,
       index: 0,
       installPic: [], //安装位置
       panorama: [], //全景照片
@@ -175,6 +172,7 @@ export default {
     //tabs被点击
     handleClick(tab, event) {
       this.index = tab.index;
+      this.pointData = [];
       this.getPointList();
     },
     //修改input
@@ -184,45 +182,47 @@ export default {
     },
     //删除图片
     delImage(index, arr) {
-      arr.splice(index, 1);
-      this.updatePoint();
+      let delArr = arr.splice(index, 1);
+      deleteLocationImg(delArr, res => {
+        this.$message.success("修改成功");
+      })
     },
     //获取key的值
     getKey(val, name) {
       switch (name) {
         case "安装位置":
           this.installPic.push({
-            key: val,
-            name: name,
-            type: "image_wz"
+            Key: val,
+            Name: name,
+            Type: "image_wz"
           });
           break;
         case "全景照片":
           this.panorama.push({
-            key: val,
-            name: name,
-            type: "panorama"
+            Key: val,
+            Name: name,
+            Type: "panorama"
           });
           break;
         case "周边照片":
           this.rimPic.push({
-            key: val,
-            name: name,
-            type: "image_zb"
+            Key: val,
+            Name: name,
+            Type: "image_zb"
           });
           break;
         case "视频":
           this.videoPic.push({
-            key: val,
-            name: name,
-            type: "video"
+            Key: val,
+            Name: name,
+            Type: "video"
           });
           break;
         default:
           this.elsePic.push({
-            key: val,
-            name: name,
-            type: "image_else"
+            Key: val,
+            Name: name,
+            Type: "image_else"
           });
       }
       this.updatePoint();
@@ -247,31 +247,24 @@ export default {
       this.mapPush(this.pointDetails.ImageList, this.rimPic);
       this.mapPush(this.pointDetails.ImageList, this.videoPic);
       this.mapPush(this.pointDetails.ImageList, this.elsePic);
-      let param = {
-        ProjId: this.pointParam.ProjId,
-        UserId: this.pointParam.UserId,
-        PointList: this.pointDetails
-      };
-      updatePoint(param).then(res => {
+      let pa = {
+        Content:[this.pointDetails]
+      }
+      updateLocationPoint(pa, res => {
         this.$message.success("修改成功");
-      });
+      })
     },
+    //获取详情
     getDetails(item) {
-      let params = {
-        ProjId: this.projectId,
-        UserId: this.userId,
-        PointId: item.Id
-      };
-      getPoint(params).then(res => {
-        let data = res.data;
-        if (data.Result == "success") {
-          this.pointShow = true;
-          this.pointDetails = data.PointList[0];
-          this.getPic(data.PointList[0].ImageList);
-        } else {
-          this.$message.error("请求出错");
-        }
-      });
+      let pa = {
+        Cascade: [{ Name: 'imageList' }],
+        Filters: `Id='${item.Id}'`
+      }
+      queryLocationPoint(pa, res => {
+        this.pointShow = true;
+        this.pointDetails = res.Content[0];
+        this.getPic(res.Content[0].ImageList || []);
+      })
     },
     getPic(imgArr) {
       this.installPic = [];
@@ -280,7 +273,7 @@ export default {
       this.videoPic = [];
       this.elsePic = [];
       imgArr.map((item, index) => {
-        switch (item.name) {
+        switch (item.Name) {
           case "安装位置":
             this.installPic.push(item);
             break;
@@ -302,21 +295,23 @@ export default {
     getPointList() {
       this.isLoading = true;
       if (this.pointParam.FloorId) {
-        //当index为1时FloorId为空
-        let param = {
-          FloorId: this.index == 0 ? this.pointParam.FloorId : '',
-          ProjId: this.pointParam.ProjId,
-          UserId: this.pointParam.UserId
-        };
-        getPT(param).then(res => {
-          res.data.PointList.splice(0, 1);
-          this.pointData = res.data.PointList;
-          console.log(this.pointData)
+        let pa = {
+          Cascade: [{ Name: 'imageList' }],
+          PageSize: 500,
+          Filters: ''
+        }
+        if (this.index == 0) {
+          pa.Filters = `FloorId='${this.pointParam.FloorId}'`
+        } else {
+          pa.Filters = 'FloorId isNull'
+        }
+        queryLocationPoint(pa, res => {
+          this.pointData = res.Content;
           if (this.index == 0) {
-            this.$emit("getPointList", res.data.PointList);
+            this.$emit("getPointList", res.Content);
           }
           this.isLoading = false;
-        });
+        })
       }
     },
     //初始化