123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671 |
- <template>
- <div class="box">
- <div class="condition">
- <div class="header">
- <el-button style="float:left;" size="small" type="default" icon="el-icon-back" @click="goBack"></el-button>
- <span>{{exampleData ? exampleData.RoomLocalName||exampleData.RoomName :''}}</span>
- </div>
- <el-row class="spaceTypes">
- <div class="types">
- <el-tabs v-model="activeTab" type='card'>
- <template v-for="(item,index) in tabsList">
- <el-tab-pane :name="item.Code" :key="index" :label="item.Name"></el-tab-pane>
- </template>
- </el-tabs>
- </div>
- <div class="deleBtn">
- <el-button size="small" @click="deleteSpace">删除业务空间</el-button>
- </div>
- </el-row>
- <div v-if="activeTab=='detail'" class="content">
- <iframe v-if="params.isMyTab == 1" height="100%" width="100%" :src="iframeSrc"></iframe>
- <el-scrollbar v-else style="height:100%;">
- <div class="content-scrollbar">
- <div class="content-left">
- <div class="content-showType">
- <selectRadio
- :selectRadio="selectRadio"
- @changeRadio="changeRadio"
- />
- </div>
- <div class="content-point">
- <div class="content-point-left">
- <exhibitionBaseInformation :exhibitionBaseInformation="exhibitionBaseInformation"/>
- </div>
- <div class="content-point-right">
- <exhibitionEnergy :exhibitionEnergy="exhibitionEnergy" />
- </div>
- </div>
- </div>
- <div class="content-right">
- <div class="content-repair">
- <exhibitionMaintain :exhibitionMaintain="exhibitionMaintain"/>
- </div>
- <div class="content-media">
- <exhibitionImage :exhibitionImage="exhibitionImage" v-if="isShowImage"/>
- <exhibitionVideo :exhibitionVideo="exhibitionVideo" v-if="isShowVideo"/>
- <exhibitionFile :exhibitionFile="exhibitionFile" v-if="isShowFile"/>
- </div>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <!-- 空间内设备列表--服务于空间的设备 -->
- <eqToSpaceTable v-else-if="activeTab=='Equipment' || activeTab=='EquipmentFor'" :params="params" :type="activeTab"></eqToSpaceTable>
- <!-- 空间内系统 -->
- <syInSpaceTable v-else-if="activeTab=='generalSystem'" :params="params" :type="activeTab"></syInSpaceTable>
- </div>
- </div>
- </template>
- <script>
- import {mapGetters} from "vuex";
- import tools from "@/utils/scan/tools";
- import {getDataDictionary, zoneDelete, zoneQuery,BeatchQueryParam} from '@/api/scan/request';
- import eqToSpaceTable from '@/components/business_space/newTables/eqToSpaceTable';
- import syInSpaceTable from '@/components/business_space/newTables/syInSpaceTable';
- import exhibitionBaseInformation from "@/components/ledger/details/detail/exhibitionBaseInformation";
- import exhibitionFile from "@/components/ledger/details/detail/exhibitionFile";
- import exhibitionImage from "@/components/ledger/details/detail/exhibitionImage";
- import exhibitionVideo from "@/components/ledger/details/detail/exhibitionVideo";
- import exhibitionCrux from "@/components/ledger/details/detail/exhibitionCrux";
- import exhibitionEnergy from "@/components/ledger/details/detail/exhibitionEnergy";
- import exhibitionMaintain from "@/components/ledger/details/detail/exhibitionMaintain";
- import selectRadio from "@/components/ledger/details/detail/selectRadio";
- export default {
- data() {
- return {
- params: {}, //参数-包含空间id 分区类型 进入方式(1-平面图 2-列表)
- tabsList: [
- {Code: 'detail', Name: '空间详情'},
- {Code: 'Equipment', Name: '空间内设备'},
- {Code: 'EquipmentFor', Name: '服务于空间的设备'},
- {Code: 'generalSystem', Name: '空间内系统'},
- ], //tab页
- activeTab: 'detail', //当前选中的tab
- pointData: [], //信息点数据
- exampleData: {}, //实例数据
- currentRadio: '1',//当前选中的select
- criterias: [], //动态参数
- instance: {},
- iframeSrc: '', //空间详情iframe
- selectRadio: {
- information: '设备信息点',
- initRadio: '1',
- radioList: [
- {
- value: '显示需采集信息点',
- label: '1'
- },
- {
- value: '显示有值信息点',
- label: '2'
- },
- {
- value: '显示全部信息点',
- label: '3'
- }
- ]
- },
- exhibitionBaseInformation: {
- information: {}
- },
- exhibitionEnergy: {
- title: '能耗信息',
- firstName:'',
- dynamic: [],
- list: {}
- },
- exhibitionMaintain: {
- title: '维修/维保记录'
- },
- exhibitionFile: {
- title: '文件',
- list: {}
- },
- exhibitionCrux: {
- title: '关键信息点:',
- cruxArray: [],
- allMessage: [],//全部信息点
- },
- exhibitionImage: {
- title: '图片',
- list: {},
- arr:[]
- },
- exhibitionVideo: {
- title: '视频',
- list: {}
- },
- isShowImage: false,
- isShowVideo: false,
- isShowFile: false,
- }
- },
- computed: {
- ...mapGetters("layout", ["projectId", "userId", "secret"])
- },
- components: {
- eqToSpaceTable,
- syInSpaceTable,
- exhibitionBaseInformation,
- exhibitionFile,
- exhibitionVideo,
- exhibitionImage,
- exhibitionMaintain,
- selectRadio,
- exhibitionCrux,
- exhibitionEnergy
- },
- created() {
- this.params = this.$route.query;
- this.getData();
- this.setFrame();
- },
- mounted() { },
- watch: {
- projectId() { }
- },
- methods: {
- deepCopy(obj) {
- return JSON.parse(JSON.stringify(obj))
- },
- // 返回
- goBack() {
- this.$router.push({
- name: "spacelist",
- params: this.params
- })
- },
- // 查询空间详情
- getData() {
- let params1 = {
- data: {
- Orders: "sort asc",
- PageNumber: 1,
- PageSize: 1000
- },
- type: this.params.zone
- }, params2 = {
- Filters: `RoomID='${this.params.RoomID}'`,
- ZoneType: this.params.zone
- };
- let promise1 = new Promise((resolve, reject) => {
- getDataDictionary(params1, res => {
- resolve(res)
- })
- })
- let promise2 = new Promise((resolve, reject) => {
- zoneQuery(params2, res => {
- resolve(res)
- })
- })
- // 数据初始化
- this.exhibitionEnergy.dynamic = [];
- this.criterias = [];
- Promise.all([promise1, promise2]).then(values => {
- this.pointData = values[0].Content;
- this.exampleData = values[1].Content[0];
- let obj = values[1].Content[0] ? this.deepCopy(values[1].Content[0]) :values[1].Content[0];
- obj = tools.flattenKeys(obj);
- for(let key in obj) {
- if(Array.isArray(obj[key]) && !obj[key].length) {
- delete obj[key]
- }
- }
- this.instance = obj;
- this.pointData.forEach(item => {
- if (item.InputMode == "L" || item.InputMode == "L1" || item.InputMode == "L2" || item.InputMode == "M") {
- let cur = tools.dataForKey(this.exampleData, item.Path);
- if (cur) {
- this.criterias.push({
- id: this.exampleData.EquipID,
- code: item.InfoPointCode
- })
- }
- }
- })
- let params = { //获取动态参数
- secret: this.secret,
- ProjId: this.projectId,
- data: {
- criterias: this.criterias
- }
- }
- if (this.criterias.length) {
- BeatchQueryParam(params, res => {
- // this.criteriasArray = res.Content;
- res.Content.length && res.Content.map(child => {
- this.pointData.map(head => {
- if (head.InfoPointCode == child.code) {
- this.$set(head, 'svalue', child.value)
- this.$set(head, 'data', child.data)
- this.$set(head, 'receivetime', child.receivetime)
- this.$set(head, 'error', child.error)
- }
- return head
- })
- })
- this.handleRadios(this.currentRadio);
- this.handleEnclosure() //处理图片视频文件信息
- })
- } else {
- this.handleRadios(this.currentRadio);
- this.handleEnclosure() //处理图片视频文件信息
- }
- })
- },
- handleEnclosure() {
- //图片文件处理,脱离radio控制
- let isList = this.pointData
- let isArr = []
- isList.map(j => {
- if (this.instance &&this.instance.hasOwnProperty(j.Path)) {
- j.value = this.instance[j.Path]
- return j
- }
- })
- isArr = isList.filter(k => k.value)
- this.handlePicList(isArr)
- this.handleFileList(isArr)
- },
- handleRadios(val) { //判断radio的值显示关键信息,基本信息,图片,文件
- let arr = []
- //关键信息点
- this.exhibitionCrux.cruxArray = this.pointData.filter(i => i.KeyWord)
- this.exhibitionCrux.cruxArray.map(i => {
- if (this.instance &&this.instance.hasOwnProperty(i.Path)) {
- return {
- ...i,
- value: this.instance[i.Path]
- }
- }
- })
- if (val == 1) { //需采集信息
- arr = this.pointData.filter(i => i.Visible)
- // 图片和的处理
- // this.handlePicList(arr)
- // // 文件处理
- // this.handleFileList(arr)
- } else if (val == 2) { //有值信息点
- let list = this.pointData
- list.map(j => {
- if (this.instance && this.instance.hasOwnProperty(j.Path)) {
- return {
- ...j,
- value: this.instance[j.Path]
- }
- }
- arr = list.filter(k => k.value)
- // this.handlePicList(arr)
- // this.handleFileList(arr)
- })
- } else { //全部信息点
- arr = this.pointData
- // this.handlePicList(arr)
- // this.handleFileList(arr)
- }
- this.displayData(arr)
- },
- handlePicList(arr) {
- let picObject = {}
- //处理数据格式
- arr.map(i => {
- if (i.InputMode == 'F2') {
- switch (i.Path) {
- case 'LedgerParam.PhotoDoc.Drawing':
- case 'LedgerParam.Siteinstall.InstallPic':
- case 'LedgerParam.Siteinstall.InstallDrawing':
- case 'LedgerParam.PhotoDoc.Nameplate':
- case 'LedgerParam.PhotoDoc.Pic':
- case 'Pic' :
- if (this.instance &&this.instance.hasOwnProperty(i.Path)) {
- i.PicList = this.instance[i.Path]
- }
- if (picObject[i.InfoPointName]) {
- } else {
- picObject[i.InfoPointName] = []
- }
- picObject[i.InfoPointName].push({
- ...i,
- })
- break;
- }
- }
- })
- //展示图片
- this.exhibitionImage.list = picObject
- let isArray = [] //获取图片数组
- for (let i in picObject) {
- if (Array.isArray(picObject[i])) {
- let list = picObject[i]
- list.forEach(i => {
- if (i.PicList) {
- isArray.push(...i.PicList)
- }
- })
- }
- }
- this.exhibitionImage.arr = isArray
- let video = isArray.filter(i => i.Type != 'image' &&i.type != 'image' )
- this.exhibitionVideo.list = video
- //判断是否显示图片组件
- this.isShowImage = isArray.length ? true : false
- //判断是否显示video组件
- this.isShowVideo = video.length ? true : false
- },
- handleFileList(arr) {
- let picObject = {}
- //处理数据格式
- arr.map(i => {
- if (i.InputMode == 'F2') {
- switch (i.Path) {
- case 'LedgerParam.InsuranceDoc.InsuranceFile':
- case 'LedgerParam.PhotoDoc.Archive':
- case 'LedgerParam.Siteinstall.CheckReport':
- if (this.instance &&this.instance.hasOwnProperty(i.Path)) {
- i.fileList = this.instance[i.Path]
- }
- if (picObject[i.InfoPointName]) {
- } else {
- picObject[i.InfoPointName] = []
- }
- picObject[i.InfoPointName].push({
- ...i,
- })
- break
- }
- }
- })
- //展示文件
- this.exhibitionFile.list = picObject
- let isArray = [] //获取文件数组
- for (let i in picObject) {
- if (Array.isArray(picObject[i])) {
- let list = picObject[i]
- list.forEach(i => {
- if (i.fileList) {
- isArray.push(...i.fileList)
- }
- })
- }
- }
- //判断是否显示文件组件
- this.isShowFile = isArray.length ? true : false
- },
- changeRadio(val) { //1,需采集,2,有值,3,全部
- this.handleRadios(val)
- this.currentRadio = val
- },
- formatDate(str) {
- if(str) {
- if(str.includes('-')) {
- return str
- }else {
- return str.substr(0,4)+"-"+str.substr(4,2)+"-"+str.substr(6,2)+" "+str.substr(8,2) + ":" +str.substr(10,2) + ":"+str.substr(12,2)
- }
- } else {
- return '--'
- }
- },
- displayData(arr) {//对数据进行处理传给组件展示
- const result = {}
- const resultEnergy = {};
- arr.forEach(i => {
- if (this.instance && this.instance.hasOwnProperty(i.Path) && this.currentRadio != 2) {
- i.value = this.instance[i.Path]
- }
- if (i.InputMode == 'C5') {
- if (this.instance && this.instance.hasOwnProperty(i.Path)) {
- let time = this.instance[i.Path]
- i.value = this.formatDate(time)
- }
- }
- if (i.DataSource && i.DataSource.length) {
- let source = JSON.parse(i.DataSource)
- //判断输入类型
- if (i.InputMode == 'D1L') {
- let d1l = tools.formatDataSource(i.DataSource)
- d1l.forEach(k => {
- if (k.Code == this.instance[i.Path]) {
- i.value = k.Name
- }
- })
- } else if (i.InputMode == 'D2' || i.InputMode == 'C6') {
- if (this.instance &&this.instance.hasOwnProperty(i.Path)) {
- if (!Array.isArray(this.instance[i.Path])) {
- let transArray = this.instance[i.Path].split(',')
- i.value = source.filter(item => transArray.includes(item.Code)).map(item => item.Name).join(',')
- }
- }
- }
- source.forEach(j => {
- if (this.instance && j.Code == this.instance[i.Path]) {
- i.value = j.Name
- }
- })
- }
- switch (i.InputMode) {
- case "L":
- case "L1":
- case "L2":
- case "M":
- if (resultEnergy[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`]) {
- resultEnergy[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`].paths.push({
- Path: i.Path,
- InfoPointName: i.InfoPointName,
- InfoPointCode: i.InfoPointCode,
- value: i.svalue,
- Visible: i.Visible,
- KeyWord: i.KeyWord,
- InputMode: i.InputMode,
- data: i.data,
- receivetime: i.receivetime,
- error: i.error,
- Unit: i.Unit,
- FirstName: i.FirstName,
- })
- } else {
- resultEnergy[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`] = {
- paths: [{
- Path: i.Path,
- InfoPointName: i.InfoPointName,
- InfoPointCode: i.InfoPointCode,
- value: i.svalue,
- Visible: i.Visible,
- KeyWord: i.KeyWord,
- InputMode: i.InputMode,
- data: i.data,
- receivetime: i.receivetime,
- error: i.error,
- Unit: i.Unit,
- FirstName: i.FirstName,
- }]
- }
- }
- break;
- default:
- if (result[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`]) {
- result[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`].paths.push({
- Path: i.Path,
- InfoPointName: i.InfoPointName,
- InfoPointCode: i.InfoPointCode,
- Value: i.value,
- Visible: i.Visible,
- KeyWord: i.KeyWord,
- InputMode:i.InputMode
- })
- } else {
- result[`${i.FirstName}${i.SecondName ? '/' + i.SecondName : ''}`] = {
- paths: [{
- Path: i.Path,
- InfoPointName: i.InfoPointName,
- InfoPointCode: i.InfoPointCode,
- Value: i.value,
- Visible: i.Visible,
- KeyWord: i.KeyWord,
- InputMode:i.InputMode
- }]
- }
- }
- }
- })
- this.exhibitionBaseInformation.information = result
- this.exhibitionCrux.allMessage = result
- this.exhibitionEnergy.list = resultEnergy;
- },
- // 设置iframe
- setFrame() {
- this.iframeSrc = `${process.env.BASE_URL}:8889/#/changeMess?perjectId=${this.projectId}&secret=${this.secret}&id=${this.params.RoomID}&type=${this.params.zone}`;
- // this.iframeSrc = this.params.isMyTab == 2 ?
- // `${process.env.BASE_URL}:8889/#/details?perjectId=${this.projectId}&secret=${this.secret}&FmId=${this.params.RoomID}&type=0&code=${this.params.zone}`
- // : `${process.env.BASE_URL}:8889/#/changeMess?perjectId=${this.projectId}&secret=${this.secret}&id=${this.params.RoomID}&type=${this.params.zone}`;
- },
- // 删除业务空间
- deleteSpace() {
- this.$confirm("此操作将删除业务空间,是否继续?", "提示", {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let pa = [{ RoomID: this.exampleData.RoomID }];
- zoneDelete(pa, res => {
- this.$message.success('删除成功')
- this.goBack()
- })
- }).catch(() => {
- this.getData()
- this.$message("取消删除")
- })
- },
- }
- };
- </script>
- <style scoped lang='less'>
- @bgc: #fff;
- .box {
- .condition {
- padding: 10px;
- display: flex;
- height: 100%;
- flex-direction: column;
- border: 1px solid #dfe6ec;
- box-sizing: border-box;
- background: #fff;
- .header {
- padding-bottom: 10px;
- span {
- line-height: 33px;
- margin-left: 15px;
- }
- }
- .spaceTypes {
- .types {
- float: left;
- width: calc(100% - 200px);
- /deep/ .el-tabs__item.is-top {
- border-top: 2px solid transparent;
- &.is-active {
- border-top: 2px solid #409eff;
- }
- }
- }
- .deleBtn {
- float: left;
- width: 200px;
- text-align: right;
- height: 40px;
- border-bottom: 1px solid #e4e7ed;
- }
- }
- .content {
- height: calc(100% - 99px);
- .content-scrollbar {
- display: flex;
- height: 100%;
- flex-direction: row;
- box-sizing: border-box;
- background-color: @bgc;
- .content-left {
- display: flex;
- flex-direction: column;
- flex: 1;
- .content-showType {
- height: 50px;
- border: 1px solid #ccc;
- border-bottom: none;
- box-sizing: border-box;
- background: @bgc;
- }
- .content-point {
- display: flex;
- flex-direction: row;
- border: 1px solid #ccc;
- box-sizing: border-box;
- background: @bgc;
- .content-point-left {
- flex: 1;
- }
- .content-point-right {
- width: 300px;
- border-left: 1px solid #ccc;
- }
- }
- }
- .content-right {
- width: 400px;
- margin-left: 10px;
- box-sizing: border-box;
- .content-repair {
- height: 50px;
- line-height: 50px;
- margin-bottom: 10px;
- border: 1px solid #ccc;
- background: @bgc;
- box-sizing: border-box;
- }
- .content-media {
- box-sizing: border-box;
- }
- }
- }
- }
- .main {
- margin-top: 10px;
- height: calc(100% - 96px);
- }
- .footer {
- margin-bottom: 10px;
- }
- /deep/ .el-scrollbar__wrap {
- overflow-x: hidden;
- }
- }
- }
- </style>
- <style lang="less">
- .el-table th {
- background-color: #d9d9d9;
- color: #000;
- }
- </style>
|