浏览代码

add interface

haojianlong 5 年之前
父节点
当前提交
1c2248a116

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

@@ -1216,4 +1216,10 @@ export function deleteLocationImg(param, success) {
 export function queryPropertyTypeCount(param, success) {
     let url = `${baseUrl}/equip-component/property/property-family`;
     http.getJson(url, param, success)
+}
+
+//扫楼作业-信息点整理-位置标签及对应资产数量
+export function queryPropertyPoint(param, success) {
+    let url = `${baseUrl}/equip-component/point/point-property`;
+    http.getJson(url, param, success)
 }

+ 12 - 13
src/framework/layout/layout-store.js

@@ -79,24 +79,23 @@ export default {
             return new Promise((resolve, reject) => {
                 frameworkApi.loadUserInfo().then(resp => {
                     console.log(resp)
-                    if (resp.result == 'success') {
-                        state.userInfo = { username: resp.username }
-                        storage.set('user_name', resp.username)
+                    if (resp.Result == 'success') {
+                        state.userInfo = { username: resp.Username }
                         state.permissions = {}
-                        if (resp.permissions) {
-                            resp.permissions.forEach(p => (state.permissions[p] = true))
+                        if (resp.Permissions) {
+                            resp.Permissions.forEach(p => (state.permissions[p] = true))
                         }
                         state.projects = []
-                        if (resp.projects) {
-                            if(resp.projects[0] && resp.projects[0].projId) {
-                                state.projectId = resp.projects[0].projId
-                                state.secret = resp.projects[0].secret?resp.projects[0].secret:""
+                        if (resp.Projects) {
+                            if(resp.Projects[0] && resp.Projects[0].ProjId) {
+                                state.projectId = resp.Projects[0].ProjId
+                                state.secret = resp.Projects[0].Secret?resp.Projects[0].Secret:""
                             }
-                            resp.projects.forEach(proj =>
+                            resp.Projects.forEach(proj =>
                                 state.projects.push({
-                                    id: proj.projId,
-                                    name: proj.projLocalName,
-                                    pwd: proj.secret?proj.secret:""
+                                    id: proj.ProjId,
+                                    name: proj.ProjLocalName,
+                                    pwd: proj.Secret?proj.Secret:""
                                 })
                             )
                         }

+ 9 - 7
src/views/data_admin/buildData/index-2.vue

@@ -332,6 +332,7 @@ import {
   updateProperty, //数据中心-更新资产
   getDataDictionary, //数据中心-查询表头
   queryPropertyTypeCount, //数据中心-资产分类及数量
+  queryPropertyPoint, //数据中心-位置标签及对应资产数量
 } from "@/api/scan/request";
 import { mapGetters, mapActions } from "vuex"
 export default {
@@ -672,15 +673,16 @@ export default {
     //获取点位标签
     getPT() {
       let pa = {
-        Filters: `LastUpdate>='${this.checkTimeArr[0]}';LastUpdate<='${this.checkTimeArr[1]}';BuildId='${this.buildId}'`,
-        PageSize: 100
+        buildingId:this.buildId,
+        endingTime:this.checkTimeArr[1],
+        startTime:this.checkTimeArr[0]
       }
-      if (this.floorId == 'noKnow') {
-        pa.Filters += `;FloorId isNull`
-      } else if (this.floorId != 'all') {
-        pa.Filters += `;FloorId='${this.floorId}'`
+      if (this.floorId == 'all') {
+        pa.floorId = `all`
+      } else if (this.floorId != 'noKnow') {
+        pa.floorId = this.floorId
       }
-      queryLocationPoint(pa, res => {
+      queryPropertyPoint(pa, res => {
         this.PTArr = res.Content;
         this.labelShow = true;
         this.createPTSwiper();

+ 1 - 1
src/views/system/auth/index.vue

@@ -20,7 +20,7 @@ export default {
         console.log(this.$store.state.ssoToken)         
         this.$store.dispatch('layout/loadUserInfo').then(resp => {
             console.log('store dispatch result ', resp)
-            if (resp.result == 'success') {
+            if (resp.Result == 'success') {
                 let lastRoute = this.$store.getters['lastRoute']
                 console.log('last route ', lastRoute)
                 if (lastRoute) {