Browse Source

modify scan building userlog and assetslist

haojianlong 5 years ago
parent
commit
20f39f1f7f

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

@@ -1186,4 +1186,10 @@ export function dynamicQueryPrompt(param, success) {
 export function dynamicQueryAI(param, success) {
     let url = `${baseUrl}/pointconfig/dynamic/ai`;
     http.postJson(url, param, success)
+}
+
+//扫楼作业-扫楼日志查看
+export function queryUserLog(param, success) {
+    let url = `${baseUrl}/scanbuilding-2/user-log/query`;
+    http.postJson(url, param, success)
 }

+ 265 - 0
src/views/data_admin/buildAssets/assetsList.vue

@@ -0,0 +1,265 @@
+<template>
+  <div class='page-table-template' style='display: flex;flex-direction: column;flex-grow: 1;flex-shrink: 1;'>
+    <div class="btn-box">
+      <el-button type='danger' @click='groupDel' :disabled="!selection.length">批量删除</el-button>
+    </div>
+    <div class="has-button-table">
+      <el-table :data='tableData' style='width: 100%' border v-loading='loading' height="100%" ref="assetTable"
+        :header-cell-style="{background:'#e1e4e5',color:'#2b2b2b'}" @selection-change='handleSelectionChange'>
+        <el-table-column type='selection' width='55' align='center'></el-table-column>
+        <el-table-column header-align='center' align='center' label='建筑' width='150'>
+          <template slot-scope='scope'>
+            {{getbuildName(scope.row.BuildingId)}}
+          </template>
+        </el-table-column>、
+        <el-table-column header-align='center' align='center' label='楼层' width='80'>
+          <template slot-scope='scope'>
+            {{getfloorName(scope.row.FloorId)}}
+          </template>
+        </el-table-column>
+        <el-table-column header-align='center' align='center' prop='Family' label='设备族'>
+          <template slot-scope='scope'>
+            {{getFamilyName(scope.row.Family)}}
+          </template>
+        </el-table-column>
+        <el-table-column header-align='center' align='center' prop='point' label='点位标签名称' v-if="active!='fourth'" show-overflow-tooltip>
+        </el-table-column>
+        <el-table-column header-align='center' align='center' prop='EquipID' label='本地编码' width='250' show-overflow-tooltip></el-table-column>
+        <el-table-column header-align='center' align='center' prop='EquipName' label='本地名称' show-overflow-tooltip>
+          <template slot-scope='scope'>
+            {{scope.row.EquipLocalName||scope.row.EquipName}}
+          </template>
+        </el-table-column>
+        <div v-if="active=='fourth'">
+          <el-table-column header-align='center' align='center' prop='SpaceId' label='所在元空间'></el-table-column>
+          <el-table-column header-align='center' align='center' prop='eq' label='设备类'></el-table-column>
+          <el-table-column header-align='center' align='center' prop='BIMLocation' label='BIM模型中坐标'></el-table-column>
+          <el-table-column header-align='center' align='center' prop='EquipmentId' label='对应的岗位' width='120'>
+            <template slot-scope='scope'>
+              <el-button v-if="scope.row.EquipmentId" type='primary' plain size='mini' @click='detail(scope.row)'>查看岗位详情</el-button>
+            </template>
+          </el-table-column>
+        </div>
+        <el-table-column header-align='center' align='center' prop='EquipID' label='操作' width='250'>
+          <template slot-scope='scope'>
+            <el-button type='primary' plain size='mini' @click='detail(scope.row)'>查看</el-button>
+            <el-button type='primary' plain size='mini' @click='add(scope.row)' v-if="active=='third'">添加岗位</el-button>
+            <el-button type='danger' plain size='mini' @click='dele(scope.row)'>删除</el-button>
+          </template>
+        </el-table-column>
+      </el-table>
+    </div>
+    <el-pagination class="right" v-show="tableData && tableData.length" @size-change="handleSizeChange" @current-change="handleCurrentChange"
+      :current-page="page.pageNumber" :page-sizes="page.pageSizes" :page-size="page.pageSize" layout="total, sizes, prev, pager, next, jumper"
+      :total="page.total">
+    </el-pagination>
+    <saga-station ref='station' :options='options' :itemObj='itemObj' @refresh='refresh'></saga-station>
+  </div>
+</template>
+
+<script>
+import { mapGetters } from 'vuex'
+import SagaStation from './Station'
+//api
+import {
+  floorQuery, //查询楼层信息
+  queryProperty, //查询资产
+  deleteProperty, //删除资产
+  getEquipBelongs, //获取设备族
+} from '@/api/scan/request'
+export default {
+  name: 'assetslist',
+  data() {
+    return {
+      loading: false,
+      tableData: [],
+      iframeSrc: '',
+      allChecked: [],
+      page: {
+        pageSize: 50,
+        pageSizes: [10, 20, 50, 100],
+        pageNumber: 1,
+        total: 0
+      },
+      building: {},//建筑id->名称
+      floorsObj: {},//楼层id->名称
+      allFamilyObj: {},
+      allEquipObj: {},
+      filter: {
+        first: 'CodeType=-4',
+        second: 'BIMID isNull',
+        third: 'EquipmentId isNull',
+        fourth: 'CodeType=1',
+      },
+      selection: [],
+      options: [],
+      itemObj: {}
+    }
+  },
+  props: {
+    buildingId: {
+      default: ''
+    },
+    active: {
+      default: 'first'
+    },
+    buildingData: {
+      default: {}
+    }
+  },
+  components: {
+    SagaStation
+  },
+  methods: {
+    //获取所有楼层
+    getFloors() {
+      floorQuery({}, res => {
+        res.Content.map(item => {
+          this.floorsObj[item.FloorID] = item.FloorLocalName
+        })
+      })
+    },
+    //获取设备族
+    getDeviceType() {
+      let param = {
+        data: {
+          Orders: "EquipName asc",
+          PageNumber: 1,
+          PageSize: 500
+        }
+      }
+      getEquipBelongs(param, res => {
+        let obj = {}
+        res.Content.map(t => {
+          this.allFamilyObj[t.Family] = t.FamilyName;
+          if (!obj[t.Family]) {
+            obj[t.Family] = []
+          }
+          obj[t.Family].push({ code: t.EquipCode, name: t.EquipName })
+        })
+        this.alloptions = obj
+      })
+    },
+    //获取列表
+    getTableData() {
+      if (this.buildingId) {
+        this.tableData = []
+        let param = {
+          Filters: `BuildingId='${this.buildingId}';${this.filter[this.active]}`,
+          Orders: "CreateTime desc,EquipID desc",
+          PageNumber: this.page.pageNumber,
+          PageSize: this.page.pageSize
+        }
+        this.loading = true
+        queryProperty(param, res => {
+          this.tableData = res.Content
+          this.page.total = res.Total
+          this.loading = false
+        })
+      }
+    },
+    //页码
+    handleCurrentChange(val) {
+      this.page.pageNumber = val;
+      this.getTableData()
+    },
+    //分页大小
+    handleSizeChange(val) {
+      this.page.pageSize = val;
+      this.page.pageNumber = 1;
+      this.getTableData()
+    },
+    //查看
+    detail(row) {
+      this.$message('开发中...')
+    },
+    //单个删除资产
+    dele(row) {
+      let param = [{ EquipID: row.EquipID }]
+      this.delProperty(param)
+    },
+    //批量删除
+    groupDel() {
+      let param = this.selection.map(t => {
+        return { EquipID: t.EquipID }
+      })
+      this.delProperty(param)
+    },
+    //删除接口
+    delProperty(param) {
+      deleteProperty(param, res => {
+        this.selection = []
+        this.$message.success('删除成功')
+        this.getTableData()
+      })
+    },
+    //选择项改变时
+    handleSelectionChange(selection) {
+      this.selection = selection;
+    },
+    //根据建筑id获取建筑名称
+    getbuildName(buildId) {
+      if (JSON.stringify(this.building)) {
+        this.buildingData.map(t => {
+          this.building[t.BuildID] = t.BuildLocalName
+        })
+      }
+      return this.building[buildId]
+    },
+    //根据楼层id获取楼层名称
+    getfloorName(floorId) {
+      return this.floorsObj[floorId]
+    },
+    //根据族三位编码对应族名称
+    getFamilyName(family) {
+      return this.allFamilyObj[family]
+    },
+    //刷新
+    refresh() { },
+    //添加岗位
+    add(row) {
+      this.options = this.alloptions[row.Family]
+      this.itemObj = row
+      this.$refs.station.show()
+    }
+  },
+  watch: {
+    buildingId() {
+      this.$refs.assetTable.doLayout()
+      this.getTableData()
+      this.selection = []
+    },
+    active(n, o) {
+      this.$refs.assetTable.doLayout()
+      this.getTableData()
+      this.selection = []
+    }
+  },
+  created() {
+    this.getFloors()
+    this.getDeviceType()
+  }
+}
+</script>
+
+<style scoped lang='less'>
+.page-table-template {
+  background-color: #fff;
+  padding: 10px;
+  .no-button-table {
+    height: calc(100% - 48px);
+  }
+  .has-button-table {
+    height: calc(100% - 94px);
+  }
+  .btn-box {
+    padding: 10px;
+    padding-top: 0;
+    display: flex;
+    justify-content: flex-end;
+  }
+  .right {
+    padding: 10px;
+  }
+}
+</style>

+ 64 - 133
src/views/data_admin/buildAssets/index.vue

@@ -1,153 +1,84 @@
 <template>
-    <div class='box'>
-        <div class='condition'>
-            <p>
-                <span style="margin-right: 12px">建筑名称</span>
-                <el-select v-model='buildVlaue' placeholder='请选择'>
-                    <el-option
-                        v-for='item in options'
-                        :key='item.BuildId'
-                        :label='item.BuildLocalName'
-                        :value='item.BuildId'
-                    ></el-option>
-                </el-select>
-            </p>
-        </div>
-        <el-tabs v-model='activeName' @tab-click='handleClick' style="background:#fff">
-            <el-tab-pane label='现场无法找到的资产' name='first'>
-                <saga-nofind :buildVlaue='buildVlaue' :floorsObj='floorsObj'></saga-nofind>
-            </el-tab-pane>
-            <el-tab-pane label='未画入模型的资产' name='second'>
-                <saga-nopaint :buildVlaue='buildVlaue' :floorsObj='floorsObj'></saga-nopaint>
-            </el-tab-pane>
-            <el-tab-pane label='无对应岗位的资产' name='third'>
-                <saga-nomap :buildVlaue='buildVlaue' :floorsObj='floorsObj' :allFamilyObj='allFamilyObj'></saga-nomap>
-            </el-tab-pane>
-            <el-tab-pane label='未扫楼验证的资产' name='fourth'>
-                <saga-verify :buildVlaue='buildVlaue' :floorsObj='floorsObj' :allEquipObj='allEquipObj'></saga-verify>
-            </el-tab-pane>
-        </el-tabs>
+  <div class='box'>
+    <div class='condition'>
+      <p>
+        <span style="margin-right: 12px">建筑名称</span>
+        <el-select v-model='buildValue' placeholder='请选择'>
+          <el-option v-for='item in options' :key='item.BuildID' :label='item.BuildLocalName' :value='item.BuildID'></el-option>
+        </el-select>
+      </p>
     </div>
+    <el-tabs v-model='activeName' @tab-click='tabChange' style="background:#fff">
+      <el-tab-pane v-for="item in tabList" :label='item.label' :name='item.name' :key="item.label"></el-tab-pane>
+    </el-tabs>
+    <assets-list :buildingData="options" :buildingId="buildValue" :active="activeName" ref="assetlist"></assets-list>
+  </div>
 </template>
 
 <script>
-import SagaNofind from './Nofind'
-import SagaNopaint from './Nopaint'
-import SagaNomap from './Nomap'
-import SagaVerify from './Noverify'
+import assetsList from './assetsList'
 import { mapGetters } from 'vuex'
 //api
-import {
-    getBuildSelect, //根据项目ID获得建筑列表
-    getAllbusiness,
-    getAllFamily
-} from '@/api/scan/request'
+import { buildingQuery } from '@/api/scan/request'
 export default {
-    name: 'build-assets',
-    data() {
-        return {
-            activeName: 'first',
-            buildVlaue: '',
-            options: [],
-            floorsObj: {},
-            allFamilyObj: {}, 
-            allEquipObj: {}
-        }
-    },
-    computed: {
-        ...mapGetters('layout', ['projectId', 'userId', 'secret'])
-    },
-    components: {
-        SagaNofind,
-        SagaNopaint,
-        SagaNomap,
-        SagaVerify
-    },
-    methods: {
-        handleClick() {},
-        //获取建筑列表
-        getBuilding() {
-            let param = {
-                ProjId: this.projectId,
-                UserId: this.userId
-            }
-            getBuildSelect(param).then(res => {
-                if (res.data.Result == 'success') {
-                    let data = res.data.BuildList
-                    this.options = data
-                    this.buildVlaue = data.length ? data[0].BuildId : ''
-                }
-            })
-        },
-        //获取所有楼层
-        getFloors() {
-            let param = {
-                ProjId: this.projectId,
-                secret: this.secret,
-                id: this.projectId,
-                type: ['Fl']
-            }
-            getAllbusiness(param).then(res => {
-                if (res.data.Result == 'success') {
-                    res.data.Content.forEach(item => {                        
-                        this.floorsObj[item.infos.FloorID] = item.infos.FloorLocalName
-                    })
-
-                }
-            })
-        },
-        //获取设备组
-        getAllFamily() {
-            getAllFamily().then(result => {
-                    if (result.data.Result == "success") {
-                        console.log(result.data.Content)
-                        let list = result.data.Content;
-                        list.forEach(ele => {
-                            this.allFamilyObj[ele.code] = ele
-                        })  
-                        this.allEquipObj = {}
-                        this.getEquip(list)              
-                    }
-                });
-        },
-        getEquip(list) {
-            list.forEach(ele => {
-                if(ele.content) {
-                    ele.content.forEach(keng => {
-                        this.allEquipObj[keng.code] = keng.name
-                    })
-                }
-            })
-        },
-        async init() {
-            await this.getAllFamily();
-            await this.getFloors();
-            await this.getBuilding()
-        }
-    },
-    created() {
-        this.init()
+  name: 'build-assets',
+  data() {
+    return {
+      activeName: 'first',
+      buildValue: '',
+      options: [],
+      floorsObj: {},
+      allFamilyObj: {},
+      allEquipObj: {},
+      tabList: [
+        { label: '现场无法找到的资产', name: "first" },
+        { label: '未画入模型的资产', name: "second" },
+        { label: '无对应岗位的资产', name: "third" },
+        { label: '未扫楼验证的资产', name: "fourth" }
+      ],
+    }
+  },
+  computed: {
+    ...mapGetters('layout', ['projectId', 'userId', 'secret'])
+  },
+  components: {
+    assetsList
+  },
+  methods: {
+    //获取建筑列表
+    getBuilding() {
+      buildingQuery({}, res => {
+        this.options = res.Content
+        this.buildValue = res.Content ? res.Content[0].BuildID : ''
+      })
     },
-    watch: {
-        projectId(){
-            this.init()
-        }
+    tabChange(tab) { }
+  },
+  created() {
+    this.getBuilding()
+  },
+  watch: {
+    projectId() {
+      this.getBuilding()
     }
+  }
 }
 </script>
 
 <style scoped lang='less'>
 .box {
-    .condition {
-        padding: 10px;
-        display: flex;
-        border: 1px solid #dfe6ec;
-        background:#fff;
-        margin-bottom: 10px;
-    }
+  .condition {
+    padding: 10px;
+    display: flex;
+    border: 1px solid #dfe6ec;
+    background: #fff;
+    margin-bottom: 10px;
+  }
 }
 </style>
 <style>
-.box .el-tabs__nav {margin-left: 10px;}
+.box .el-tabs__nav {
+  margin-left: 10px;
+}
 </style>
 

+ 20 - 21
src/views/data_admin/buildLog/index.vue

@@ -2,11 +2,11 @@
   <div style="display: flex; flex-direction: column;flex-grow: 1; flex-shrink: 1;">
     <div class="log-main">
       <div class='condition'>
-        <el-input v-model.trim='searchValue' class='margin-right' style='width: 300px;'
-          placeholder='请输入操作人、动作、对象id等关键字搜索' @change='searchChange'></el-input>
-        <el-date-picker class='margin-right' v-model='dateValue' type='daterange' align='center' :clearable='false'
-          unlink-panels range-separator='至' start-placeholder='开始日期' end-placeholder='结束日期'
-          :picker-options='pickerOptions' @change='dateChange' value-format='yyyy-MM-dd'></el-date-picker>
+        <el-input v-model.trim='searchValue' class='margin-right' style='width: 300px;' placeholder='请输入操作人、动作、对象id等关键字搜索' @change='searchChange'>
+        </el-input>
+        <el-date-picker class='margin-right' v-model='dateValue' type='daterange' align='center' :clearable='false' unlink-panels range-separator='至'
+          start-placeholder='开始日期' end-placeholder='结束日期' :picker-options='pickerOptions' @change='dateChange' value-format='yyyy-MM-dd'>
+        </el-date-picker>
       </div>
       <div class="log-table">
         <p style="text-align: right; padding: 10px">
@@ -15,11 +15,12 @@
           <el-button style="width: 96px" @click='downExcel'>导出到Excel</el-button>
         </p>
         <div style="height: calc(100% - 52px)">
-          <el-table :data='tableData' tooltip-effect='dark' style='width: 100%;' v-loading='loading' height="100%">
+          <el-table :data='tableData' tooltip-effect='dark' style='width: 100%;' v-loading='loading' height="100%"
+            :header-cell-style="{background:'#e1e4e5',color:'#2b2b2b'}">
             <el-table-column prop='CreateTime' label='时间' width='150' align='center' header-align='center'>
             </el-table-column>
             <el-table-column prop='Comming' label='来源' width='120' header-align='center' align="center"></el-table-column>
-            <el-table-column prop='UserName' label='操作人' width='120' header-align='center' align='center'>
+            <el-table-column prop='Name' label='操作人' width='120' header-align='center' align='center'>
             </el-table-column>
             <el-table-column prop='Phone' label='手机' width='150' header-align='center' align='center'></el-table-column>
             <el-table-column prop='Action' label='动作' width='200' header-align='center' align='center'></el-table-column>
@@ -42,7 +43,7 @@
 </template>
 
 <script>
-import { getBuildLog, dowmloadLog } from '@/api/scan/request' //获取日志/下载日志
+import { queryUserLog } from '@/api/scan/request' //获取日志/下载日志
 import { mapGetters, mapActions } from 'vuex'
 import axios from 'axios'
 //component
@@ -188,20 +189,18 @@ export default {
       this.getLogData()
     },
     getLogData() {
-      this.loading = true
       let param = {
-        startTime: this.dateValue[0] + ' 00:00:00',
-        endTime: this.dateValue[1] + ' 23:59:59',
-        filter: this.searchValue,
-        pageNum: this.page.pageNumber,
-        pageSize: this.page.pageSize,
-        ProjId: this.projectId,
-        UserId: this.userId
+        Filters: `CreateTime>='${this.dateValue[0]} 00:00:00';CreateTime<='${this.dateValue[1]} 23:59:59'`,
+        PageNumber: this.page.pageNumber,
+        PageSize: this.page.pageSize
+      }
+      if (this.searchValue) {
+        param.Filters += `;Name contain '${this.searchValue}' or Phone contain '${this.searchValue}' or Action contain '${this.searchValue}' or Note contain '${this.searchValue}' or UserId contain '${this.searchValue}'`
       }
-      getBuildLog(param).then(res => {
+      queryUserLog(param, res => {
         this.loading = false
-        this.page.total = res.data.Count
-        this.tableData = res.data.LogList
+        this.page.total = res.Content
+        this.tableData = res.LogList
       })
     },
     init() {
@@ -221,7 +220,7 @@ export default {
 </script>
 
 <style lang='less' scoped>
-.log-main{
+.log-main {
   height: 100%;
   background: #fff;
   .condition {
@@ -231,7 +230,7 @@ export default {
       margin-right: 10px;
     }
   }
-  .log-table{
+  .log-table {
     border-top: 2px solid #dfe6ec;
     height: calc(100% - 100px);
     .ellipsis {