Explorar o código

Merge branch 'master' into apiupdate

haojianlong %!s(int64=5) %!d(string=hai) anos
pai
achega
e429f71c6b

+ 5 - 3
package.json

@@ -12,7 +12,7 @@
     "dependencies": {
         "axios": "^0.18.0",
         "echarts": "^4.1.0",
-        "element-ui": "^2.6.1",
+        "element-ui": "^2.11.0",
         "font-awesome": "^4.7.0",
         "handsontable-pro": "^3.0.0",
         "jquery": "^3.3.1",
@@ -37,6 +37,7 @@
         "css-loader": "^0.28.0",
         "extract-text-webpack-plugin": "^3.0.0",
         "file-loader": "^1.1.4",
+        "file-saver": "^2.0.2",
         "friendly-errors-webpack-plugin": "^1.6.1",
         "html-webpack-plugin": "^2.30.1",
         "less": "^3.9.0",
@@ -62,7 +63,8 @@
         "webpack": "^3.6.0",
         "webpack-bundle-analyzer": "^2.9.0",
         "webpack-dev-server": "^2.9.1",
-        "webpack-merge": "^4.1.0"
+        "webpack-merge": "^4.1.0",
+        "xlsx": "^0.15.1"
     },
     "engines": {
         "node": ">= 6.0.0",
@@ -73,4 +75,4 @@
         "last 2 versions",
         "not ie <= 8"
     ]
-}
+}

+ 70 - 7
src/components/business_space/business/handsontable.vue

@@ -41,7 +41,7 @@ import Handsontable from "handsontable-pro"
 import 'handsontable-pro/dist/handsontable.full.css'
 import zhCN from 'handsontable-pro/languages/zh-CN';
 import qrcode from "@/components/ledger/lib/qrcode";
-import { queryZone, updateZone, deleteZone, createZone } from "@/api/scan/request";
+import { queryZone, updateZone, deleteZone, createZone, BeatchQueryParam } from "@/api/scan/request";
 import { mapGetters, mapActions } from "vuex";
 export default {
   props: {
@@ -142,7 +142,10 @@ export default {
 				this.page.total = res.Total
 				this.main = res.Content
 				if (this.main && this.main.length && this.main[0].RoomID) {
-					this.copyMain = tools.deepCopy(this.main);
+          this.copyMain = tools.deepCopy(this.main);
+          if (this.onlyRead) {
+            this.getBatch(this.main)
+          }
         }
         this.isLoading = false
 				this.getMain()
@@ -336,22 +339,25 @@ export default {
         	Projection: []
 				},
         zone: this.zoneObj.code
-      };
+      }, keyList = [];
       //生成要修改字段列表
       change.map((item) => {
-        if(item[1] && param.data.Projection.indexOf(item[1]) == -1) {
-          param.data.Projection.push(item[1])
+        let key = item[1].split(".")[0]
+        if(item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key)
+        }
+        if(item[1] && item[3] == "" && param.data.Projection.indexOf(key) == -1) {
+          param.data.Projection.push(key)
         }
       })
       //生成对应修改数据
       data.map((item, index) => {
-        param.data.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value)
           tools.setDataForKey(item, value, itemData == "" ? null : itemData)
         })
         param.data.Content.push(item);
 			})
-      param.Projection = []
 			updateZone(param, (res) => {})
     },
     //获取被筛选掉的行号
@@ -388,6 +394,63 @@ export default {
       }
       return a;
     },
+    //获取动态参数
+    getBatch(data) {
+      let param = {
+        secret: this.secret,
+        ProjId: this.projectId,
+        data: {
+          criterias: []
+        }
+      };
+      this.headers.map(head => {
+        if (
+          head.InputMode == "L" ||
+          head.InputMode == "L1" ||
+          head.InputMode == "L2" ||
+          head.InputMode == "M"
+        ) {
+          data.map(item => {
+            let cur = tools.dataForKey(item, head.Path);
+            if (cur) {
+              param.data.criterias.push({
+                id: item.RoomID,
+                code: head.InfoPointCode
+              });
+            }
+          });
+        }
+      });
+      if (param.data.criterias.length) {
+        BeatchQueryParam(param, res => {
+          this.main = data.map(item => {
+            res.Content.map(child => {
+              if (item.RoomID == child.id) {
+                if (child.data || child.data == 0) {
+                  this.headers.map(head => {
+                    if (head.InfoPointCode == child.code) {
+                      tools.setDataForKey(item, head.Path, child.data);
+                    }
+                  });
+                } else {
+                  this.headers.map(head => {
+                    if (head.InfoPointCode == child.code) {
+                      tools.setDataForKey(
+                        item,
+                        head.Path,
+                        child.error ? "表号功能号格式错误" : "表号功能号不存在"
+                      );
+                    }
+                  });
+                }
+              }
+            });
+            return item;
+          });
+          this.hot.loadData(this.main);
+        });
+      }
+    },
     /**
      * 表头文案处理函数
      * @param list header数组数据

+ 2 - 4
src/components/dialogs/list/systemType.vue

@@ -28,9 +28,7 @@
           <el-table-column label="本地编码" header-align='center'>
             <template slot-scope="scope">{{scope.row.SysLocalID || '--'}}</template>
           </el-table-column>
-          <el-table-column label="专业" header-align='center'>
-            <template slot-scope="scope">{{scope.row.MajorName}}</template>
-          </el-table-column>
+          <el-table-column label="专业" prop="MajorName" header-align='center'></el-table-column>
           <el-table-column label="详情" header-align='center' width="100" align="center">
             <template slot-scope="scope">
               <el-button @click="lookDeatils(scope.row)" type="text">详情</el-button>
@@ -228,7 +226,7 @@ export default {
   watch: {
     dialog: {
       deep: true,
-      handler: function () {
+      handler () {
         if (this.dialog.systemType) {
           this.getData()
           this.getTableData()

+ 20 - 16
src/components/ledger/handsontables/assets.vue

@@ -49,7 +49,7 @@
     <!-- 新增资产 -->
     <el-dialog class="add-assets" :title="showAddByDie?'未关联资产的设备批量创建资产':'确定新增资产类型'" @close="showAddByDie = false" :visible.sync="myDialog.addDevice" width="670px">
       <el-row>
-        <my-cascader v-show="!showAddByDie" ref="cascader" @change="changeCader"></my-cascader>
+        <my-cascader v-show="!showAddByDie" ref="cascader" :all="true" @change="changeCader"></my-cascader>
         <die-cascader v-show="showAddByDie" ref="dieCascader" :Family="addData.Family" @change="changeDevice"></die-cascader>
         <floor-cascader v-show="showAddByDie" @change="changeFloor"></floor-cascader>
         <div class="die-text" v-show="showAddByDie">当前筛选条件下有<span class="die-num">{{dieNum}}</span>个设备可批量创建资产。</div>
@@ -328,7 +328,7 @@ export default {
       this.myDialog.addDevice = true
       if (this.mess.deviceId) {
         this.$nextTick(() => {
-          this.$refs.cascader.setValue([this.mess.deviceId])
+          this.$refs.cascader.setValue(this.mess.deviceId)
           this.addData.Family = this.mess.deviceId
           this.numParams.Family = this.mess.deviceId
         })
@@ -401,9 +401,11 @@ export default {
     },
     //选择设备类型-添加资产
     changeCader(val) {
-      this.addData.Family = val.code
-      this.addData.name = val.facility
-      this.numParams.Family = val.code
+      if(val.code && val.facility){
+        this.addData.Family = val.code
+        this.addData.name = val.facility
+        this.numParams.Family = val.code
+      }
     },
     //选择设备或部件
     changeDevice(val) {
@@ -600,7 +602,7 @@ export default {
     async removeDevice(param) {
       await deleteProperty(param, res => {
         this.$message.success("删除成功")
-        this.$emit('close','')
+        this.$emit('getJson','')
         this.getTableData()
       })
     },
@@ -609,20 +611,24 @@ export default {
       let param = {
         Content: [],
         Projection: []
-      }
+      }, keyList = []
       //生成要修改字段列表
       change.map(item => {
-        if (item[1] && param.Projection.indexOf(item[1]) == -1) {
-          if (item[1].split(".")[0] == "flowBuild") {
-            param.Projection.push("BuildingId","FloorId")
-          } else {
-            param.Projection.push(item[1].split(".")[0])
-          }
+        let key = item[1].split(".")[0]
+        if (key == "flowBuild" && keyList.indexOf(key) == -1) {
+          keyList.push("BuildingId","FloorId")
+          param.Projection.push("BuildingId","FloorId")
+        }
+        if (item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key)
+        }
+        if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1) {
+          param.Projection.push(key)
         }
       })
       //生成对应修改数据
       data.map((item, index) => {
-        param.Projection.map(value => {
+        keyList.map(value => {
           if (value == "BuildingId") {
             let itemData = tools.dataForKey(item, "flowBuild")
             if (itemData == "") {
@@ -643,11 +649,9 @@ export default {
             let itemData = tools.dataForKey(item, value)
             tools.setDataForKey(item, value, itemData == "" ? null : itemData)
           }
-          
         });
         param.Content.push(item)
       })
-      param.Projection = []
       updateProperty(param, res => { })
     },
     //修改资产类型

+ 9 - 6
src/components/ledger/handsontables/device.vue

@@ -348,7 +348,7 @@ export default {
       this.myDialog.addDevice = true
       if (this.mess.deviceId) {
         this.$nextTick(() => {
-          this.$refs.cascader.setValue([this.mess.deviceId])
+          this.$refs.cascader.setValue(this.mess.deviceId)
         })
       }
     },
@@ -551,22 +551,25 @@ export default {
       let param = {
         Content: [],
         Projection: []
-      };
+      }, keyList = [];
       //生成要修改字段列表
       change.map(item => {
-        if (item[1] && param.Projection.indexOf(item[1]) == -1 && item[1] != 'PropertyId') {
-          param.Projection.push(item[1].split(".")[0]);
+        let key = item[1].split(".")[0]
+        if (item[1] && keyList.indexOf(key) == -1 && item[1] != 'PropertyId') {
+          keyList.push(key);
+        }
+        if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1 && item[1] != 'PropertyId') {
+          param.Projection.push(key);
         }
       });
       //生成对应修改数据
       data.map((item, index) => {
-        param.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value);
           tools.setDataForKey(item, value, itemData == "" ? null : itemData);
         });
         param.Content.push(item);
       });
-      param.Projection = []
       updateEquip(param, res => { });
     },
     //修改设备类型

+ 11 - 8
src/components/ledger/handsontables/system.vue

@@ -90,8 +90,8 @@ export default {
     ...mapGetters("layout", ["projectId", "secret", "userId"]),
     showTypes() {
       return this.onlyRead ?
-        [{ value: "all", label: '全部' }, { value: "Visible", label: '只看采集信息' }] :
-        [{ value: "all", label: '全部' }, { value: "Visible", label: '只看采集信息' }, { value: "partInfo", label: '隐藏信息点' }]
+        [{ value: "Visible", label: '只看采集信息' }, { value: "all", label: '全部' }] :
+        [{ value: "partInfo", label: '隐藏信息点' }, { value: "all", label: '全部' }, { value: "Visible", label: '只看采集信息' }]
     }
   },
   data() {
@@ -224,7 +224,7 @@ export default {
       this.myDialog.addDevice = true
       if (this.mess.deviceId) {
         this.$nextTick(() => {
-          this.$refs.cascader.setValue([this.mess.deviceId])
+          this.$refs.cascader.setValue(this.mess.deviceId)
         })
       }
     },
@@ -451,22 +451,25 @@ export default {
       let param = {
         Content: [],
         Projection: []
-      };
+      }, keyList = [];
        //生成要修改字段列表
       change.map(item => {
-        if (item[1] && param.Projection.indexOf(item[1]) == -1) {
-          param.Projection.push(item[1].split(".")[0]);
+        let key = item[1].split(".")[0]
+        if (item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key);
+        }
+        if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1) {
+          param.Projection.push(key);
         }
       });
       //生成对应修改数据
       data.map((item, index) => {
-        param.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value);
           tools.setDataForKey(item, value, itemData == "" ? null : itemData);
         });
         param.Content.push(item);
       });
-      param.Projection = []
       updateGeneralSys(param, res => { });
     },
     //获取到了正确的信息

+ 62 - 28
src/components/ledger/lib/assets.vue

@@ -1,7 +1,10 @@
 <template>
   <div id="cascaderMap">
     <span class="buildFloor" style="padding-right: 12px;">设备族</span>
-    <el-cascader
+    <el-select v-model="value" placeholder="请选择" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small" @change="changeVal">
+      <el-option  v-for="item in options" :key="item.code" :label="item.facility" :value="item.code"></el-option>
+    </el-select>
+    <!-- <el-cascader
       placeholder="请选择"
       :options="options"
       v-model="value"
@@ -11,24 +14,28 @@
       size="small"
       @change="changeVal"
       change-on-select
-    ></el-cascader>
+    ></el-cascader> -->
   </div>
 </template>
 <script>
 import {mapGetters} from 'vuex';
-import { getEquipBelongs } from "@/api/scan/request";
+import { getEquipBelongs, queryProperty } from "@/api/scan/request";
 export default {
   name: "getCode",
   props: {
     isWidth: {
       type: Boolean,
       default: true
+    },
+    all: {
+      type: Boolean,
+      default: false,
     }
   },
-      computed: {
-        ...mapGetters("layout", [
-            "projectId",
-        ])
+  computed: {
+    ...mapGetters("layout", [
+        "projectId",
+    ])
   },
   data() {
     return {
@@ -65,30 +72,63 @@ export default {
       this.value = val
       this.$emit("change", value)
     },
-    async getData() {
-      let params = {
+    getData() {
+      let param1 = {
         data:{
           Distinct: true,
           PageNumber: 1,
           PageSize: 500,
           Projection:["Family","FamilyName"]
         }
+      }, param2 = {
+        Distinct: true,
+        PageNumber: 1,
+        PageSize: 500,
+        Projection: [
+          "Family"
+        ]
       }
-      await getEquipBelongs(params, res => {
-        this.options = this.changeArr(res.Content)
-        if (!!this.value && this.value.length) {
-          let value = {}
-          this.options.map(item => {
-            if (item.code == this.value[0]) {
-              value = item
-            }
-          })
-          this.$emit("change", value)
+      let promise1 = new Promise((resolve, reject) => {
+        getEquipBelongs(param1, res => {
+          resolve(res)
+        })
+      })
+      let promise2 = new Promise((resolve, reject) => {
+        queryProperty(param2, res => {
+          resolve(res)
+        })
+      })
+      Promise.all([promise1,promise2]).then((res) => {
+        let allData = res[0], data = res[1]
+        this.options = this.changeArr(allData.Content)
+        if (this.value) {
+          this.changeVal(this.value)
         }
-        if (!this.falg) {
-          this.changeList()
+        if(!this.all) {
+          this.content = data.Content.map(item => {
+            return item.Family
+          });
+          this.changeList();
+          if (this.value) {
+            this.changeVal(this.value)
+          }
         }
       })
+      // getEquipBelongs(params, res => {
+      //   this.options = this.changeArr(res.Content)
+      //   if (!!this.value && this.value.length) {
+      //     let value = {}
+      //     this.options.map(item => {
+      //       if (item.code == this.value[0]) {
+      //         value = item
+      //       }
+      //     })
+      //     this.$emit("change", value)
+      //   }
+      //   if (!this.falg) {
+      //     this.changeList()
+      //   }
+      // })
     },
     changeArr(arr) {
       let data = [];
@@ -108,15 +148,9 @@ export default {
     },
     changeList() {
       this.options = this.options.filter(item => {
-        if (this.content.find(value => value.Family == item.code)) {
+        if (this.content.indexOf(item.code) > -1) {
           return item
         }
-        // item.disabled = true
-        // this.content.map(child => {
-        //   if (item.code == child) {
-        //     item.disabled = false
-        //   }
-        // })
       })
     }
   }

+ 7 - 4
src/components/ledger/lib/cascader.vue

@@ -1,8 +1,11 @@
 <template>
   <div id="cascaderMap">
     <span class="buildFloor" style="margin-right: 12px;">设备类别</span>
-    <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
-      @change="changeVal" change-on-select></el-cascader>
+    <el-select v-model="value" placeholder="请选择" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small" @change="changeVal">
+      <el-option  v-for="item in options" :key="item.code" :label="item.facility" :value="item.code"></el-option>
+    </el-select>
+    <!-- <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
+      @change="changeVal" change-on-select></el-cascader> -->
   </div>
 </template>
 <script>
@@ -25,7 +28,7 @@ export default {
   },
   data() {
     return {
-      value: [""],
+      value: "",
       options: [],
       props: {
         value: "code",
@@ -40,7 +43,7 @@ export default {
   },
   watch: {
     projectId() {
-      this.value = [''];
+      this.value = '';
       this.getData();
     }
   },

+ 5 - 0
src/components/ledger/lib/floorCascader.vue

@@ -140,6 +140,11 @@
         }
     };
 </script>
+<style lang="less">
+    .el-cascader .el-input .el-input__inner {
+        vertical-align: bottom;
+    }
+</style>
 <style lang="less" scoped>
     #buildFloor {
         margin-left: 10px;

+ 9 - 6
src/components/ledger/lib/partsDieList.vue

@@ -1,8 +1,11 @@
 <template>
   <div id="cascaderMap">
     <span class="buildFloor" style="margin-right: 12px;">设备类</span>
-    <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
-      @change="changeVal" change-on-select></el-cascader>
+    <el-select v-model="value" placeholder="请选择" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small" @change="changeVal">
+      <el-option  v-for="item in options" :key="item.code" :label="item.facility" :value="item.code"></el-option>
+    </el-select>
+    <!-- <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
+      @change="changeVal" change-on-select></el-cascader> -->
   </div>
 </template>
 <script>
@@ -25,7 +28,7 @@ export default {
   },
   data() {
     return {
-      value: [""],
+      value: "",
       options: [],
       props: {
         value: "code",
@@ -42,7 +45,7 @@ export default {
   },
   watch: {
     projectId() {
-      this.value = [''];
+      this.value = '';
       this.getAllData()
     }
     // Family: {
@@ -56,7 +59,7 @@ export default {
   },
   methods: {
     setValue(val) {
-      if (val && val.length) {
+      if (val) {
         this.value = val
       }
     },
@@ -84,7 +87,7 @@ export default {
       queryPartsDie(param, res => {
         this.content = res.Content
         this.filterForOptions()
-        let val = this.options.length?[this.options[0].code]:[""]
+        let val = this.options.length?this.options[0].code:""
         this.changeVal(val)
       })
     },

+ 6 - 3
src/components/ledger/lib/system.vue

@@ -1,8 +1,11 @@
 <template>
   <div id="cascaderMap">
     <span class="buildFloor" style="padding-right: 12px;">所属专业系统类型</span>
-    <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
-      @change="changeVal" change-on-select></el-cascader>
+    <el-select v-model="value" placeholder="请选择" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small" @change="changeVal">
+      <el-option  v-for="item in options" :key="item.Category" :label="item.CategoryName" :value="item.Category"></el-option>
+    </el-select>
+    <!-- <el-cascader placeholder="请选择" :options="options" v-model="value" :props="props" filterable :style="isWidth ? '' : 'width:160px;'" size="small"
+      @change="changeVal" change-on-select></el-cascader> -->
   </div>
 </template>
 <script>
@@ -43,7 +46,7 @@ export default {
   },
   watch: {
     projectId() {
-      this.value = ['']
+      this.value = ''
     }
   },
   methods: {

+ 209 - 0
src/data/mapTable.js

@@ -0,0 +1,209 @@
+export const State = {
+  '-5': '已撕码',
+  '-4': '现场未找到',
+  '-3': '现场已找到-隐蔽工程未贴码',
+  '-2': '现场已找到-距离太远未贴码',
+  '-1': '现场已找到-只验证未贴码',
+  '0': '现场已找到-正常贴码',
+  '1': '岗位转资产,待现场验证',
+  '2': '撕码任务',
+  '3': '换码任务'
+}
+
+export const Family = {
+  "AHA": "空气源热泵",
+  "CLA": "吊顶",
+  "WGA": "风力发电装置",
+  "HEA": "换热器",
+  "WBA": "防水板",
+  "MAA": "手动报警按钮",
+  "SBA": "气体灭火启动瓶",
+  "CDA": "水加药装置",
+  "PAA": "燃气调压箱",
+  "SEA": "火灾探测器",
+  "DPA": "位移传感器",
+  "WTB": "水箱",
+  "SDB": "防火排烟阀",
+  "TCA": "伴热电缆",
+  "CRA": "门禁读卡器",
+  "ESA": "扶梯",
+  "OHA": "室外消火栓",
+  "TLC": "坐便器",
+  "DGA": "柴油发电机",
+  "SUA": "供水机组",
+  "CPB": "控制面板",
+  "HSA": "高压开关柜",
+  "FTA": "泡沫储罐组",
+  "TUA": "全程水处理仪",
+  "VDB": "图像传感器",
+  "SAA": "分体空调",
+  "AHB": "空调机组",
+  "DSB": "显示屏",
+  "APA": "空气净化器",
+  "FCB": "变频器",
+  "TUC": "直饮水处理机组",
+  "PNA": "嵌板",
+  "PSB": "巡更棒",
+  "IBA": "伴热保温器",
+  "TPA": "温度传感器",
+  "SKA": "洗碗槽",
+  "SPE": "蹲便器",
+  "EHA": "电热水器",
+  "STA": "自助终端机",
+  "PSD": "停车位",
+  "EXA": "交换机",
+  "WSA": "盥洗盆",
+  "EEA": "电度传感器",
+  "VMA": "监视器",
+  "FLA": "流量传感器",
+  "AAA": "抗浮锚杆",
+  "VDA": "真空脱气机",
+  "SDA": "软化水装置",
+  "ARA": "扶手",
+  "STC": "化粪池",
+  "CBB": "组合式传感器",
+  "OTA": "冷却塔",
+  "RCA": "雨水收集设备",
+  "SUB": "喷灌机组",
+  "ELB": "应急照明灯具",
+  "CBA": "燃煤锅炉",
+  "BGA": "气体灭火瓶组",
+  "SNA": "喷头",
+  "HDB": "干手机",
+  "CMA": "摄像头",
+  "ELA": "直梯",
+  "APB": "油烟净化器",
+  "HDA": "加湿器",
+  "CPA": "充电桩",
+  "PVA": "预作用报警阀组",
+  "AVA": "调节阀",
+  "BPA": "母线插接箱",
+  "DOA": "除味装置",
+  "FEB": "广播前端设备",
+  "PLB": "桩",
+  "CTC": "帘",
+  "STB": "蓄冷热槽",
+  "FCA": "风机盘管",
+  "IHA": "即时加热器",
+  "IUA": "室内机",
+  "PPA": "水泵",
+  "HFA": "硬件防火墙",
+  "XXX": "其他",
+  "TFA": "变压器",
+  "FNA": "风机",
+  "GHB": "燃气热水器",
+  "RVA": "减压阀",
+  "LSB": "漏电探测器",
+  "GLA": "车位引导灯",
+  "IOA": "风口",
+  "CPC": "集水坑",
+  "MFA": "消声器",
+  "CPE": "组件",
+  "GBA": "燃气锅炉",
+  "SDC": "声音传感器",
+  "SPC": "扬声器",
+  "KLA": "龙骨",
+  "CFA": "定压补水装置",
+  "MPA": "机械车位",
+  "EBA": "电锅炉",
+  "SNB": "气体灭火喷头",
+  "LPA": "液化石油气瓶",
+  "FHA": "地板采暖设备",
+  "CUA": "控制箱",
+  "BPC": "地埋管",
+  "OSA": "隔油池",
+  "DSA": "直流屏",
+  "OUA": "室外机",
+  "PFA": "人流量传感器",
+  "TSA": "水箱消毒器",
+  "FGA": "速通门",
+  "HBA": "消火栓箱",
+  "FUA": "新风机组",
+  "ALA": "声光报警器",
+  "CCA": "离心式冷水机组",
+  "WVA": "湿式报警阀组",
+  "HTB": "热量传感器",
+  "CVA": "燃气切断阀",
+  "SED": "强电线路",
+  "GHA": "地源热泵",
+  "CTA": "浓度传感器",
+  "FBA": "燃油锅炉",
+  "PDA": "车位检测器",
+  "EDA": "电梯基坑",
+  "SPD": "速度传感器",
+  "RSA": "中继台",
+  "DVA": "干式报警阀组",
+  "HAA": "辅热设备",
+  "RTA": "路由器",
+  "WEA": "弱电线路",
+  "MTA": "电机",
+  "DRA": "硬盘录像机",
+  "SEC": "入侵报警探测器",
+  "SPB": "潜污泵",
+  "LPB": "联动琴台",
+  "EIA": "疏散指示灯牌",
+  "WMA": "消防水炮设备",
+  "SPA": "太阳能电池板",
+  "PTA": "压力罐",
+  "ATA": "信号放大天线",
+  "PCA": "水泵接合器",
+  "DCA": "分集水器",
+  "CFC": "泳池循环过滤机组",
+  "SEB": "燃气探测器",
+  "RHA": "湿度传感器",
+  "HTA": "主机",
+  "ETA": "末端试水装置",
+  "ECA": "灭火剂容器",
+  "GTA": "进出闸机",
+  "WTA": "对讲机",
+  "ILA": "保温层",
+  "APC": "无线AP点位",
+  "GSA": "气体管道",
+  "IPA": "综合保护装置",
+  "GDA": "梁",
+  "PLA": "播放器",
+  "RDA": "散热器",
+  "ETB": "电梯曳引机",
+  "ORA": "餐饮除油成套设备",
+  "RLA": "继电器",
+  "EPA": "预埋件",
+  "ACA": "吸收式冷水机组",
+  "TLB": "电话",
+  "FAA": "地板空调器",
+  "LTA": "灯具",
+  "FRA": "防火卷帘门",
+  "FEA": "前端设备",
+  "SCA": "螺杆式冷水机组",
+  "PSC": "压力传感器",
+  "USA": "紫外线消毒器",
+  "BFA": "生物质炊暖炉",
+  "TLA": "工具",
+  "LUA": "污废水一体式提升机组",
+  "CPD": "巡更通讯座",
+  "ACB": "热风幕",
+  "FEC": "灭火器",
+  "SVA": "安全阀",
+  "LSA": "低压开关柜",
+  "PCB": "静压箱",
+  "CAA": "定风量箱",
+  "OVA": "通断阀",
+  "VRA": "变频多联机",
+  "ACC": "空压机",
+  "BPB": "备用电源",
+  "WHA": "水源热泵",
+  "CVB": "止回阀",
+  "FDA": "滤毒除湿机",
+  "LQA": "液体管道",
+  "BDA": "主体",
+  "RWA": "坡道",
+  "DWA": "低压配电抽屉",
+  "CSA": "垫层",
+  "CTB": "涂层",
+  "URA": "小便器",
+  "VAA": "变风量箱",
+  "SCB": "太阳能集热器",
+  "PSA": "稳压设备",
+  "TUB": "中水处理机组",
+  "BTA": "浴缸",
+  "CFB": "水景循环过滤机组"
+}

+ 103 - 0
src/utils/JOSNToExcel.js

@@ -0,0 +1,103 @@
+import { saveAs } from 'file-saver'
+import XLSX from 'xlsx'
+
+const jsontoExcel = {
+  downloadExl: function (header, data, fileName) {
+    // var keys = Object.keys(data[0]);
+    let copyData = JSON.parse(JSON.stringify(data))
+    let firstRow = {};
+    let keys = header.map((item) => {
+      this.setDataForKey(firstRow, item.fieldName, item.headerName);
+      return item.fieldName
+    });
+    // header.forEach(function (item) {
+    //   firstRow[item] = item;
+    // });
+    copyData.unshift(firstRow);
+
+    let content = {};
+
+    // 把json格式的数据转为excel的行列形式
+    let sheetsData = copyData.map((item, rowIndex) => {
+      return keys.map((key, columnIndex) => {
+        return Object.assign({}, {
+          value: this.dataForKey(item, key),
+          // value: item[key],
+          position: (columnIndex > 25 ? this.getCharCol(columnIndex) : String.fromCharCode(65 + columnIndex)) + (rowIndex + 1),
+        });
+      });
+    }).reduce(function (prev, next) {
+      return prev.concat(next);
+    });
+
+    sheetsData.forEach((item) => {
+      content[item.position] = {
+        v: item.value
+      };
+    });
+
+    //设置区域,比如表格从A1到D10,SheetNames:标题,
+    let coordinate = Object.keys(content);
+    let workBook = {
+      SheetNames: ["Sheet1"],
+      Sheets: {
+        "Sheet1": Object.assign({}, content, { "!ref": coordinate[0] + ":" + coordinate[coordinate.length - 1] }),
+      }
+    };
+    //这里的数据是用来定义导出的格式类型
+    var excelData = XLSX.write(workBook, { bookType: "xlsx", bookSST: false, type: "binary" });
+    var blob = new Blob([this.string2ArrayBuffer(excelData)], { type: "" });
+    saveAs(blob, `${fileName}.xlsx`);
+  },
+  //字符串转字符流
+  string2ArrayBuffer: function (s) {
+    var buf = new ArrayBuffer(s.length);
+    var view = new Uint8Array(buf);
+    for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;
+    return buf;
+  },
+  // 将指定的自然数转换为26进制表示。映射关系:[0-25] -> [A-Z]。
+  getCharCol: function (n) {
+    let s = "",
+      m = 0
+    while (n > 0) {
+      m = n % 26 + 1
+      s = String.fromCharCode(m + 64) + s
+      n = (n - m) / 26
+    }
+    return s
+  },
+  //根据key值去对象中取对应的值
+  dataForKey: function (data, key) {
+    let arr = key.split(".")
+    if (arr && arr[0]) {
+      for (let i = 0; i < arr.length; i++) {
+        if (arr[i] && data[arr[i]]) {
+          data = data[arr[i]]
+        } else {
+          return ''
+        }
+      }
+      return data
+    }
+  },
+  //根据key值去设置对象的值
+  setDataForKey: function (data, key, value) {
+    let arr = key.split(".")
+    if (arr && arr[0]) {
+      for (let i = 0; i < arr.length; i++) {
+        if (!(arr[i] && data[arr[i]])) {
+            data[arr[i]] = {}
+        }
+        if (value !== undefined) {
+            if (i == arr.length - 1) {
+                data[arr[i]] = value
+            }
+        }
+        data = data[arr[i]]
+      }
+    }
+  }
+}
+
+export default jsontoExcel

+ 11 - 4
src/utils/handsontable/buildFloorData.js

@@ -68,10 +68,17 @@ const buildFloor = {
       data.forEach(item => {
         if (item.children && item.children.length) {
           item.children.forEach(child => {
-            buildFloorData.push({
-              Code: item.value + "-" + child.value,
-              Name: item.label + "-" + child.label
-            })
+            if (child.value != "") {
+              buildFloorData.push({
+                Code: item.value + "-" + child.value,
+                Name: item.label + "-" + child.label
+              })
+            } else {
+              buildFloorData.push({
+                Code: item.value,
+                Name: item.label + "-" + child.label
+              })
+            }
           })
         } else {
           buildFloorData.push({

+ 11 - 9
src/views/ledger/cenotelist/index.vue

@@ -169,16 +169,20 @@ export default {
       let param = {
         Content: [],
         Projection: []
-      };
-      //生成要修改字段列表
-      change.map((item) => {
-        if(item[1] && param.Projection.indexOf(item[1]) == -1) {
-          param.Projection.push(item[1])
+      }, keyList = [];
+       //生成要修改字段列表
+      change.map(item => {
+        let key = item[1].split(".")[0]
+        if (item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key);
         }
-      })
+        if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1) {
+          param.Projection.push(key);
+        }
+      });
       //生成对应修改数据
       data.map((item, index) => {
-        param.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value)
           tools.setDataForKey(item, value, itemData == "" ? null : itemData)
         })
@@ -190,8 +194,6 @@ export default {
         // }
         param.Content.push(item);
       })
-      param.Projection = []
-
       await updataCenoteTableData(param, (res) => {
         
       })

+ 5 - 5
src/views/ledger/facility/index.vue

@@ -79,7 +79,7 @@ export default {
     let deviceId = this.$route.params.deviceId;
     if (deviceId) {
       this.$nextTick(() => {
-        this.$refs.cascader.changeVal([deviceId])
+        this.$refs.cascader.changeVal(deviceId)
       })
     }
   },
@@ -102,7 +102,7 @@ export default {
     close(val) {
       this.getCount()
       if (val && this.$refs.cascader){
-        this.$refs.cascader.changeVal([val.code])
+        this.$refs.cascader.changeVal(val.code)
       }
         this.$refs.cascader.getData()
       //   this.$refs.tableMain.getHeaderData(this.param);
@@ -163,9 +163,9 @@ export default {
 
     //修改设备族
     changeDevice(value) {
-      this.param.deviceId = value.code
-      this.param.name = value.facility
-      if (!!value) {
+      if (value.code && value.facility) {
+        this.param.deviceId = value.code
+        this.param.name = value.facility
         if (this.$refs.tableMain)
           this.$refs.tableMain.getHeaderData(this.param);
       }

+ 10 - 6
src/views/ledger/facility/partsmanage/index.vue

@@ -241,16 +241,20 @@ export default {
           Content: [],
           Projection: []
         }
-      };
+      }, keyList = [];
       //生成要修改字段列表
-      change.map(item => {
-        if (item[1] && param.data.Projection.indexOf(item[1]) == -1) {
-          param.data.Projection.push(item[1].split(".")[0]);
+      change.map((item) => {
+        let key = item[1].split(".")[0]
+        if(item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key)
         }
-      });
+        if(item[1] && item[3] == "" && param.data.Projection.indexOf(key) == -1) {
+          param.data.Projection.push(key)
+        }
+      })
       //生成对应修改数据
       data.map((item, index) => {
-        param.data.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value);
           tools.setDataForKey(item, value, itemData == "" ? null : itemData);
         });

+ 1 - 1
src/views/ledger/property/addpropertys.vue

@@ -78,7 +78,7 @@ export default {
   },
   mounted() {
     if (this.params.category) {
-      this.$refs.dieCascader.setValue([this.params.category])
+      this.$refs.dieCascader.setValue(this.params.category)
     }
     if (this.params.buildId && this.params.floorId) {
       this.$refs.floorCascader.setValue([this.params.buildId,this.params.floorId])

+ 7 - 35
src/views/ledger/property/index.vue

@@ -17,10 +17,7 @@ import floorCascader from "@/components/ledger/lib/floorCascader";
 import myCascader from "@/components/ledger/lib/assets";
 import hansonTable from "@/components/ledger/handsontables/assets";
 import tableTransfers from "@/components/ledger/tableTransfers";
-import {
-    mapGetters,
-    mapActions
-} from "vuex";
+import { mapGetters, mapActions } from "vuex";
 import { countProperty, queryProperty } from "@/api/scan/request"
 import "./../index.scss"
 export default {
@@ -32,13 +29,8 @@ export default {
     tableTransfers
   },
   computed: {
-        ...mapGetters("layout", [
-            "projectId",
-            "projects",
-            "secret",
-            "userId"
-        ])
-    },
+    ...mapGetters("layout", [ "projectId", "projects", "secret", "userId" ])
+  },
   data() {
     return {
       mess: {
@@ -72,7 +64,7 @@ export default {
     let Family = this.$route.params.Family
     if (Family) {
       this.$nextTick(() => {
-        this.$refs.cascader.changeVal([Family])
+        this.$refs.cascader.changeVal(Family)
       })
     }
   },
@@ -91,21 +83,6 @@ export default {
         this.mess.perjectName = item.name
       })
     },
-    getFamilyList() {
-      let param = {
-        Distinct: true,
-        PageNumber: 1,
-        PageSize: 500,
-        Projection: [
-          "Family"
-        ]
-      }
-      queryProperty(param, res => {
-        if (this.$refs.cascader) {
-              this.$refs.cascader.pushData(res.Content)
-          }
-      })
-    },
     //获取header的list
     getNumber() {
       countProperty({}, res => {
@@ -113,7 +90,6 @@ export default {
       })
       countProperty({"Filters": "not EquipmentId isNull"}, res => {
         this.mess.name[1].num = res.Count
-        this.getFamilyList()
       })
     },
     //修改楼层
@@ -136,8 +112,7 @@ export default {
 
     //新建资产后进行刷新
     change(val) {
-      console.log(val)
-      this.$refs.cascader.setValue([val.code])
+      this.$refs.cascader.setValue(val.code)
       this.param.deviceId = val.code
       this.getNumber()
       if (!!this.param.deviceId) {
@@ -148,13 +123,10 @@ export default {
 
     //修改设备族
     changeDevice(value) {
-      console.log(value)
-      this.param.deviceId = value.code
-      if (!!value) {
+      if (value.code && value.facility) {
+        this.param.deviceId = value.code
         if(this.$refs.tableMain)
         this.$refs.tableMain.getHeaderData(this.param);
-      } else {
-        return;
       }
     }
   }

+ 11 - 9
src/views/ledger/rentlist/index.vue

@@ -185,16 +185,20 @@ export default {
       let param = {
         Content: [],
         Projection: []
-      }
-      //生成要修改字段列表
-      change.map((item) => {
-        if(item[1] && param.Projection.indexOf(item[1]) == -1) {
-          param.Projection.push(item[1])
+      }, keyList = [];
+       //生成要修改字段列表
+      change.map(item => {
+        let key = item[1].split(".")[0]
+        if (item[1] && keyList.indexOf(key) == -1) {
+          keyList.push(key);
         }
-      })
+        if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1) {
+          param.Projection.push(key);
+        }
+      });
       //生成对应修改数据
       data.map((item, index) => {
-        param.Projection.map(value => {
+        keyList.map(value => {
           let itemData = tools.dataForKey(item, value)
           tools.setDataForKey(item, value, itemData == "" ? null : itemData)
         })
@@ -206,8 +210,6 @@ export default {
         // }
         param.Content.push(item);
       });
-
-      param.Projection = []
       await updataRentTableData(param, (res) => {
         
       })

+ 250 - 27
src/views/ledger/report/index.vue

@@ -1,36 +1,259 @@
 <template>
-    <div>
-      <das-board>
-        <template v-slot:plan>
-          <span>{{plan?plan:"yyyy-mm-dd"}}</span>
-        </template>
-        <template v-slot:finish>
-          <span>{{finish?finish:"yyyy-mm-dd"}}</span>
-        </template>
-        <template v-slot:onLine>
-          <span>{{onLine?onLine:"yyyy-mm-dd"}}</span>
-        </template>
-        <template v-slot:explain>
-          <span>{{explain?explain:"yyyy-mm-dd"}}</span>
-        </template>
-      </das-board>
-    </div>
+  <div>
+    <el-row style="margin-top: 30px;">
+      <span>请选择要导出的数据:</span>
+      <el-select v-model="value" placeholder="请选择">
+        <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
+      </el-select>
+      <el-button @click="handleClickDownload" type="primary" :loading="loading" style="margin-left: 15px;">导出Excel</el-button>
+    </el-row>
+    <div style="text-align:center;font-size:25px;margin-top:20%;">当前页面中的为临时功能,完整版正在设计中……</div>
+  </div>
 </template>
 
 <script>
-import dasBoard from "@/views/dasboard/index";
+import jsontoExcel from "@/utils/JOSNToExcel"
+import { State, Family } from "@/data/mapTable"
+import { queryEquip, queryProperty } from "@/api/scan/request"
+import { mapGetters, mapActions } from "vuex"
+
 export default {
-    components: {
-      dasBoard
+  data() {
+    return {
+      loading: false,
+      value: '',
+      dataList: [],
+      options: [{
+        value: 'header1',
+        label: '已建立关联的设备资产'
+      }, {
+        value: 'header2',
+        label: '未关联资产的设备'
+      }, {
+        value: 'header3',
+        label: '未关联设备的资产'
+      }],
+      header1: [{
+        fieldName: "Building.BuildLocalName",
+        headerName: "建筑"
+      }, {
+        fieldName: "Floor.FloorLocalName",
+        headerName: "楼层"
+      }, {
+        fieldName: "EquipCategory.EquipName",
+        headerName: "设备类"
+      }, {
+        fieldName: "EquipLocalName",
+        headerName: "设备本地名称"
+      }, {
+        fieldName: "EquipLocalID",
+        headerName: "设备本地编码"
+      }, {
+        fieldName: "EquipID",
+        headerName: "设备id"
+      }, {
+        fieldName: "BIMID",
+        headerName: "设备BIMID"
+      }, {
+        fieldName: "Property.EquipFamilyList.0.FamilyName",
+        headerName: "资产设备族"
+      }, {
+        fieldName: "Property.EquipLocalName",
+        headerName: "资产本地名称"
+      }, {
+        fieldName: "Property.EquipLocalID",
+        headerName: "资产本地编码"
+      }, {
+        fieldName: "Property.EquipID",
+        headerName: "资产id"
+      }, {
+        fieldName: "Property.CreateTime",
+        headerName: "资产创建时间"
+      }, {
+        fieldName: "Property.CodeType",
+        headerName: "资产现场验证状态"
+      }],
+      header2: [{
+        fieldName: "Building.BuildLocalName",
+        headerName: "建筑"
+      }, {
+        fieldName: "Floor.FloorLocalName",
+        headerName: "楼层"
+      }, {
+        fieldName: "EquipCategory.EquipName",
+        headerName: "设备类"
+      }, {
+        fieldName: "EquipLocalName",
+        headerName: "设备本地名称"
+      }, {
+        fieldName: "EquipLocalID",
+        headerName: "设备本地编码"
+      }, {
+        fieldName: "EquipID",
+        headerName: "设备id"
+      }, {
+        fieldName: "BIMID",
+        headerName: "设备BIMID"
+      }],
+      header3: [{
+        fieldName: "Building.BuildLocalName",
+        headerName: "建筑"
+      }, {
+        fieldName: "Floor.FloorLocalName",
+        headerName: "楼层"
+      }, {
+        fieldName: "EquipFamilyList.0.FamilyName",
+        headerName: "资产设备族"
+      }, {
+        fieldName: "EquipLocalName",
+        headerName: "资产本地名称"
+      }, {
+        fieldName: "EquipLocalID",
+        headerName: "资产本地编码"
+      }, {
+        fieldName: "EquipID",
+        headerName: "资产id"
+      }, {
+        fieldName: "CreateTime",
+        headerName: "资产创建时间"
+      }, {
+        fieldName: "CodeType",
+        headerName: "资产现场验证状态"
+      }
+      ]
+    }
+  },
+  methods: {
+    handleClickDownload() {
+      this.loading = true
+      this.dataList = []
+      if (this.value == 'header1') {
+        this.getheader1Data()
+      } else if (this.value == 'header2') {
+        this.getheader2Data()
+      } else if (this.value == 'header3') {
+        this.getheader3Data()
+      }
+    },
+    getheader1Data(pageNum) {
+      pageNum = pageNum ? pageNum : 1
+      let params = {
+        Cascade: [
+          {
+            Name: "equipCategory",
+            Projection: ["EquipCode", "EquipName"]
+          },
+          {
+            Name: "property",
+            Cascade: [
+              {
+                Name: "equipFamilyList",
+                Projection: [ "Family", "FamilyName" ]
+              }
+            ],
+            Projection: ["Family", "EquipLocalName", "EquipLocalID", "EquipID", "CodeType", "CreateTime"]
+          },
+          {
+            Name: "building",
+            Projection: ["BuildLocalName", "BuildName", "BuildID"]
+          },
+          {
+            Name: "floor",
+            Projection: ["FloorLocalName", "FloorName", "FloorID"]
+          }
+        ],
+        Filters: " not propertyId isnull ",
+        PageNumber: pageNum,
+        PageSize: 1000,
+        Projection: ["BuildingId", "FloorId", "Category", "EquipLocalName", "EquipLocalID", "EquipID", "BIMID"]
+      }
+      queryEquip(params, res => {
+        this.dataList = this.dataList.concat(res.Content.map((item) => {
+          item.Property.CodeType = State[item.Property.CodeType]
+          // item.Property.Family = Family[item.Property.Family]
+          return item
+        }))
+        if (res.Total / (res.PageSize * res.PageNumber) > 1) {
+          this.getheader1Data(res.PageNumber + 1)
+        } else {
+          let time = +new Date()
+          this.loading = false
+          jsontoExcel.downloadExl(this.header1, this.dataList, `已建立关联的资产设备-${time}`)
+        }
+      })
     },
-    data() {
-        return {
-          plan: "2019-10-30",
-          finish: "2019-10-30",
-          onLine: "2019-10-30",
-          explain: "照岗位和资产数据统计报告"
+    getheader2Data(pageNum) {
+      pageNum = pageNum ? pageNum : 1
+      let params = {
+        Cascade: [
+          {
+            Name: "equipCategory",
+            Projection: ["EquipCode", "EquipName"]
+          },
+          {
+            Name: "building",
+            Projection: ["BuildLocalName", "BuildName", "BuildID"]
+          },
+          {
+            Name: "floor",
+            Projection: ["FloorLocalName", "FloorName", "FloorID"]
+          }
+        ],
+        Filters: " propertyId isnull ",
+        PageNumber: pageNum,
+        PageSize: 1000,
+        Projection: ["BuildingId", "FloorId", "Category", "EquipLocalName", "EquipLocalID", "EquipID", "BIMID"]
+      }
+      queryEquip(params, res => {
+        this.dataList = this.dataList.concat(res.Content)
+        if (res.Total / (res.PageSize * res.PageNumber) > 1) {
+          this.getheader2Data(res.PageNumber + 1)
+        } else {
+          let time = +new Date()
+          this.loading = false
+          jsontoExcel.downloadExl(this.header2, this.dataList, `未关联资产的设备-${time}`)
         }
+      })
     },
-    mounted() {}
+    getheader3Data(pageNum) {
+      pageNum = pageNum ? pageNum : 1
+      let params = {
+        Cascade: [
+          {
+            Name: "equipFamilyList",
+            Projection: [ "Family", "FamilyName" ]
+          },
+          {
+            Name: "building",
+            Projection: [ "BuildLocalName", "BuildName", "BuildID" ]
+          },
+          {
+            Name: "floor",
+            Projection: [ "FloorLocalName", "FloorName", "FloorID" ]
+          }
+        ],
+        Filters: " EquipmentId isnull ",
+        PageNumber: pageNum,
+        PageSize: 1000,
+        Projection: [ "BuildingId", "FloorId", "Family", "EquipLocalName", "EquipLocalID", "EquipID", "CreateTime", "CodeType" ]
+      }
+      queryProperty(params, res => {
+        this.dataList = this.dataList.concat(res.Content.map((item) => {
+          item.CodeType = State[item.CodeType]
+          return item
+        }))
+        if (res.Total / (res.PageSize * res.PageNumber) > 1) {
+          this.getheader3Data(res.PageNumber + 1)
+        } else {
+          let time = +new Date()
+          this.loading = false
+          jsontoExcel.downloadExl(this.header3, this.dataList, `未关联设备的资产-${time}`)
+        }
+      })
+    }
+  }
 }
-</script>
+</script>
+
+<style scoped>
+</style>

+ 59 - 1
src/views/ledger/spacelist/index.vue

@@ -71,7 +71,7 @@ import facilityDialog from "@/components/business_space/dialogs/facilityDialog";
 // import spaceHandsontable from "@/components/business_space/business/spaceHandsontable";
 import graphy from "@/components/business_space/graphy/business";
 import handsontableMain from "@/components/business_space/business/handsontable";
-import { getDataDictionary, getAllbusiness, getBussTypes, getSpaceFloor } from "@/api/scan/request";
+import { getDataDictionary, getAllbusiness, getBussTypes, getSpaceFloor, buildingQuery, floorQuery } from "@/api/scan/request";
 import tools from '@/utils/scan/tools'
 import { mapGetters, mapActions } from "vuex";
 export default {
@@ -148,6 +148,63 @@ export default {
     },
     //获取楼层
     getFloor() {
+      // let data, buildParams = {
+      //   PageNumber: 1,
+      //   PageSize: 500
+      // }, floorParams = {
+      //   Orders: "FloorSequenceID desc",
+      //   PageNumber: 1,
+      //   PageSize: 500
+      // }
+      // let promise1 = new Promise((resolve, reject) => {
+      //   buildingQuery(buildParams, res => {
+      //     resolve(res)
+      //   })
+      // })
+      // let promise2 = new Promise((resolve, reject) => {
+      //   floorQuery(floorParams, res => {
+      //     resolve(res)
+      //   })
+      // })
+      // Promise.all([promise1, promise2]).then(values => {
+      //   let builData = values[0].Content, floorData = values[1].Content
+      //   data = builData.map(build => {
+      //     return {
+      //       code: build.BuildID,
+      //       name: build.BuildLocalName
+      //     }
+      //   })
+      //   data.forEach(build => {
+      //     floorData.forEach(floor => {
+      //       if (build.code == floor.BuildID && floor.FloorID && floor.FloorLocalName) {
+      //         if (build.children) {
+      //           build.children.push({
+      //             code: floor.FloorID,
+      //             name: (floor.FloorLocalName || floor.FloorName || "未知") + this.myMess(floor),
+      //             map: floor.StructureInfo?floor.StructureInfo.FloorMap?floor.StructureInfo.FloorMap:null:null,
+      //             affected: floor.affected,
+      //             buildCode: build.BuildID,
+      //             buildName: build.BuildLocalName,
+      //             FloorSequenceID: floor.FloorSequenceID
+      //           })
+      //         } else {
+      //           build.children = []
+      //           build.children.push({
+      //             code: floor.FloorID,
+      //             name: (floor.FloorLocalName || floor.FloorName || "未知") + this.myMess(floor),
+      //             map: floor.StructureInfo?floor.StructureInfo.FloorMap?floor.StructureInfo.FloorMap:null:null,
+      //             affected: floor.affected,
+      //             buildCode: build.BuildID,
+      //             buildName: build.BuildLocalName,
+      //             FloorSequenceID: floor.FloorSequenceID
+      //           })
+      //         }
+      //       }
+      //     })
+      //   })
+      //   this.options = data
+      // })
+
       let param = {
         ProjId: this.projectId,
         UserId: this.UserId,
@@ -208,6 +265,7 @@ export default {
         return "(该业务空间受元空间变化影响)"
       } else {
         if (i.infos.FloorMap) {
+        // if (i.StructureInfo && i.StructureInfo.FloorMap) {
           return ''
         } else {
           return "(请初始化平面图)"

+ 2 - 2
src/views/ledger/system/index.vue

@@ -68,7 +68,7 @@ export default {
     let deviceId = this.$route.params.deviceId;
     if (deviceId) {
       this.$nextTick(() => {
-        this.$refs.cascader.changeVal([deviceId])
+        this.$refs.cascader.changeVal(deviceId)
       })
     }
   },
@@ -84,7 +84,7 @@ export default {
       this.countGeneralSys()
       if (!!val && !!val.Category) {
         if (this.$refs.cascader)
-          this.$refs.cascader.changeVal([val.Category])
+          this.$refs.cascader.changeVal(val.Category)
       }
       this.$refs.cascader.getData()
     },