123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <template>
- <div class="floorSpace">
- <div class="leftChange">
- <div class="allIndicator">
- <div
- class="eachItem "
- v-for="(item,index) in allIndicator"
- @click="clickIndicator(index)"
- v-bind:class="{'select':item.id==selIndicator.id}"
- >
- <div class="title">{{item.name}}</div>
- <div
- class="textCont"
- v-show="item.id==selIndicator.id"
- >{{totalAvgValues}}{{selIndicator.unit}}<br /><span class="name">平均{{selIndicator.name}}</span></div>
- <img
- v-show="item.id==selIndicator.id"
- class="img"
- :src="selIndicator.img"
- ></img>
- </div>
- </div>
- </div>
- <div class="floorWrap">
- <div
- class="floor-item"
- v-for="(item,index) in showFloors"
- :key="index"
- >
- <div class="floor-num"><span>{{item.localName}}</span></div>
- <div class="floor-space">
- <div
- class="space-box"
- v-for="(childItem,id) in item.dataSpaces"
- :key="id"
- v-bind:style="{ width: item.spacewidth + '%' }"
- >
- <div class="space-name" v-bind:style="{backgroundColor:selectColor(childItem.avgValues,selIndicatorId,true)}">{{childItem.localName}}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import moment from "moment";
- import { selectColor } from "@/utils/publicMethod";
- export default {
- name: 'FloorSpace',
- data() {
- return {
- selIndicator: {},
- selIndicatorId:'',//为了颜色用
- // 温度
- // 二氧化碳
- // 湿度
- //
- // pm2.5
- nowIndicatorIndex:null,//现在选中的指标 index
- allIndicator: [{
- id: 'temp',
- code:'Tdb',
- name: '温度',
- img: require('../../assets/horImg/wendu.png'),
- unit: '℃',
- fixed:1
- }, {
- id: 'humidity',
- code:'RH',
- name: '湿度',
- img: require('../../assets/horImg/shidu.png'),
- unit: '%',
- fixed:0
- }, {
- id: 'co2',
- code:'CO2',
- name: 'CO₂',
- img: require('../../assets/horImg/co2.png'),
- unit: 'ppm',
- fixed:0
- }, {
- id: 'methanal',
- code:'HCHO',
- name: '甲醛',
- img: require('../../assets/horImg/jiaquan.png'),
- unit: 'mg/m³',
- fixed:2
- }, {
- id: 'pm25',
- code:'PM2d5',
- name: 'PM2.5',
- img: require('../../assets/horImg/pm25.png'),
- unit: 'ug/m³',
- fixed:0
- }],
- allFloor: [],
- firstPageParams: [],
- secondPageParams: [],
- nowPage: 1, //当前哪一屏幕
- pageNum:0,
- showFloors: [],
- totalAvgValues:null
- }
- },
- props: {
- showPing: {
- type: Number,
- default: () => {
- return 0;
- },
- },
- },
- watch:{
- showPing(newv,oldv){
- //当前展示为第二屏时
- if(newv==2){
- this.nowPage = 1;
- this.queryFs();
- }
- }
- },
- mounted() {
-
- },
- destroyed(){
- console.log("horfloorspace---destroyed");
- },
- methods: {
- selectColor:selectColor,
- clickIndicator(index) {
- this.nowIndicatorIndex = index;
- },
- getTimeFloorParam() {
- //第一屏的参数 第二屏的参数
- var floorparam =
- this.nowPage == 1
- ? this.firstPageParams
- : this.secondPageParams;
- var _this = this;
- this.queryParam(floorparam).then(() => {
- var timeoutsign = setTimeout(() => {
- _this.nowIndicatorIndex = _this.nowIndicatorIndex + 1;//湿度等指标的轮询变化
- if (_this.nowIndicatorIndex == 5) {
- //debugger;
- if (_this.pageNum == _this.nowPage) {
- _this.nowIndicatorIndex = 0;
- _this.$emit('donetowpage');
- // clearTimeout(timeoutsign);
- return;
- }
- if (_this.pageNum == 2 && _this.nowPage == 1) {
- _this.nowPage = 2;
- _this.nowIndicatorIndex = 0;
- }
-
- }
- this.getTimeFloorParam();
- }, 200000);
- });
- },
- queryFs() {
- //var loading = this.$loading({ fullscreen: true });
- this.$axios
- .post(this.$api.queryFs, {
- criteria: {
- projectId: "Pj1101020002",
- },
- size: 14,//最多14层
- page: 1,
- orders: [
- {
- column: "floorSequenceId",
- asc: true,
- },
- ],
- })
- .then((res) => {
- // loading.close();
- var allFloor = res.data.content || [];
- allFloor = allFloor.filter(function(item) {
- return item.spaceNum > 0;
- });
- this.allFloor = allFloor;
- var allFloorNum = allFloor.length;
- //如果超过7层 就显示两屏幕 第一屏 firstPageNum
- //如果超过7层 就显示两屏幕 第二屏 secondPageNum
- var firstPageNum, secondPageNum;
- if (allFloorNum <= 7) {
- firstPageNum = allFloorNum;
- secondPageNum = 0;
- this.pageNum=1;
- } else {
- firstPageNum = Math.ceil(allFloorNum / 2);
- secondPageNum = Math.floor(allFloorNum / 2);
- this.pageNum=2;
- }
- var firstMaxSpace = this.floorHandle(firstPageNum); //第一屏 一层最多空间
- var sendMaxSpace = this.floorHandle(secondPageNum);
- var firstPageFloors = allFloor.slice(0, firstPageNum); //第一屏 所有楼层
- var secondPageFloors = allFloor.slice(firstPageNum);//第二屏 所有楼层
- //第一屏的参数 第二屏的参数
- this.firstPageParams = firstPageFloors.map((item) => {
- var obj = {};
- obj.id = item.id;
- obj.projectId = "Pj1101020002";
- obj.spaceNum = firstMaxSpace;//最多空间数
- return obj;
- });
- this.secondPageParams = secondPageFloors.map((item) => {
- var obj = {};
- obj.id = item.id;
- obj.projectId = "Pj1101020002";
- obj.spaceNum = sendMaxSpace;
- return obj;
- });
-
-
- this.nowIndicatorIndex=0;
- this.getTimeFloorParam();
- }).catch(function(res){
- // loading.close();
- });
- },
- queryParam(floorparam) {
- //var loading = this.$loading({ fullscreen: true });
- var endTime = moment();
- var startTime = moment().subtract(30, "minutes");//往前取15分钟
- var startStr = startTime.format("YYYYMMDDHHmmss");
- var endStr = endTime.format("YYYYMMDDHHmmss");
- var newv=this.nowIndicatorIndex;
- this.selIndicator = this.allIndicator[newv];
- var param = this.selIndicator.code;
- return this.$axios
- .post(
- `${this.$api.queryParam}?endTime=${endStr}&startTime=${startStr}¶m=${param}`,
- floorparam
- )
- .then((res) => {
- // loading.close();
- //console.log("queryParam", res);
- var showFloors = res.data.data.floors || [];
- this.totalAvgValues = res.data.data.avgValues || null;
- this.totalAvgValues&&(this.totalAvgValues=this.totalAvgValues.toFixed(this.selIndicator.fixed));
- showFloors.forEach((ele) => {
- var filterFloorarr = this.allFloor.filter((item) => {
- return item.id == ele.id;
- });
- var filterFloor = filterFloorarr[0] || {};
- ele.name = filterFloor.name;
- ele.localId = filterFloor.localId;
- ele.localName = filterFloor.localName;
- var dataSpacesNum = ele.dataSpaces.length;//一层的空间数
- var lineNum = this.spaceHandle(dataSpacesNum,showFloors.length) ; //一行的个数
-
- ele.spacewidth = 100 / lineNum;
- });
- this.showFloors = showFloors;
- this.selIndicatorId=this.selIndicator.id;
- }).catch((err)=>{});
- },
- spaceHandle(spaceNum,floorNum){//返回一层 的每一行 几个房间
- var lineNum = spaceNum; //一行的房间数
- if (floorNum == 1) {//最多一层时
- if (spaceNum > 2 && spaceNum <= 24 ) {
- lineNum = spaceNum / 2;
- }else if (spaceNum > 24 && spaceNum <= 36) {
- lineNum = Math.ceil(spaceNum / 3);
- } else if (spaceNum > 36 && spaceNum <= 48) {
- lineNum = Math.ceil(spaceNum / 4);
- } else if (spaceNum > 48 && spaceNum <= 60) {//48-60个 5行
- lineNum = Math.ceil(spaceNum / 5);
- }
- }else{
- //debugger;
- var floorline = Math.ceil(spaceNum / 16); //20-30 3排 30-40个 4排 一层排数
- lineNum = Math.ceil(spaceNum / floorline);
- }
- //debugger;
- return lineNum;
- },
- floorHandle(floorNum) {
- var maxFloorSpace = 1;//一层 最多显示房间数
- switch (floorNum) {
- case 1:
- maxFloorSpace = 60;
- break;
- case 2:
- maxFloorSpace = 48;
- break;
- case 3:
- case 4:
- maxFloorSpace = 32;
- break;
- case 5:
- case 6:
- case 7:
- maxFloorSpace = 16;
- break;
- }
- return maxFloorSpace;
- // if(floorNum == 2) {
- // if (spaceNum > 16 && spaceNum < = 32 ) {
- // lineNum = Math.ceil(spaceNum / 2);
- // }else if (spaceNum > 32 && spaceNum < = 48 ) {
- // lineNum = Math.ceil(spaceNum / 3);
- // }
- // maxFloorSpace=48;
- // }
- // if(floorNum ==3||floorNum ==4) {
- // if (spaceNum > 16 && spaceNum < = 32 ) {
- // lineNum = Math.ceil(spaceNum / 2);
- // }
- // maxFloorSpace=32;
- // }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .floorSpace {
- width: 100%;
- // height: 910px;
- display: flex;
-
- }
- .leftChange {
- height: 100%;
- width: 154px;
- margin: 0 auto;
- min-height: 700px;
- background: #ffffff;
- border-top-left-radius: 16px;
- border-bottom-left-radius: 16px;
- .allIndicator {
- padding-top: 32px;
- padding-bottom: 20px;
- // display: flex;
- // align-items: center;
- // justify-content: center;
- .eachItem {
- cursor: pointer;
- margin-bottom: 60px;
- padding: 0;
- text-align: center;
- .title {
- color: #9b98ad;
- font-size: 24px;
- }
- &.select {
- border-left: 4px solid #46ccf6;
- .title {
- color: #3b3558;
- font-size: 24px;
- }
- .textCont {
- color: #3b3558;
- font-size: 20px;
- padding-top: 16px;
- padding-bottom: 20px;
- line-height: 20px;
- .name {
- font-size: 14px;
- }
- }
- .img {
- height: 196px;
- padding: 0;
- margin: 0;
- }
- }
- }
- }
- // .allIndicator {
- // padding-top: 32px;
- // padding-bottom: 20px;
- // display: flex;
- // align-items: center;
- // justify-content: center;
- // .eachItem {
- // font-size: 24px;
- // color: #9b98ad;
- // margin-right: 60px;
- // display: flex;
- // flex-direction: column;
- // align-items: center;
- // .bar {
- // width: 24px;
- // height: 6px;
- // display: inline-block;
- // }
- // &.select {
- // color: #3b3558;
- // .bar {
- // background: #46ccf6;
- // }
- // }
- // }
- // }
- // .imageDiv {
- // height: 32px;
- // margin: 0 32px;
- // }
- // .textCont {
- // color: #3b3558;
- // font-size: 20px;
- // font-weight: 600;
- // text-align: center;
- // padding-top: 16px;
- // .value {
- // margin-left: 4px;
- // }
- // }
- }
- .floorWrap {
- // width: 1000px;
- flex: 1;
- margin: 0 auto;
- background: #ffffff;
- border-top-right-radius: 16px;
- border-bottom-right-radius: 16px;
- padding-right:20px;
- box-sizing: border-box;
- .floor-item {
- display: flex;
- padding: 18px 0;
- box-sizing: border-box;
- background: linear-gradient(
- 161.44deg,
- rgba(50, 129, 246, 0.1) 6.16%,
- rgba(50, 129, 246, 0) 81.03%
- );
- }
- .floor-num {
- display: flex;
- justify-content: center;
- align-items: center;
- font-family: Persagy;
- font-size: 36px;
- font-weight: 700;
- line-height: 43px;
- color: #3b3558;
- width: 80px;
- flex-shrink: 0;
- }
- .floor-space {
- display: flex;
- flex: 1;
- flex-wrap: wrap;
- .space-box {
- padding: 4px;
- box-sizing: border-box;
- .space-name {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 86px;
- min-width: 20px;
- border-radius: 8px;
- background: #d9f5d6;
- text-align: center;
- }
- }
- }
- }
- </style>
|