123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <div class="floorSpace">
- <div class="leftChange">
- <!-- <div class="allIndicator">
- <div
- class="eachItem"
- v-for="item in allIndicator"
- @click="clickIndicator(item)"
- v-bind:class="{'select':item.id==selIndicator.id}"
- ><span>{{item.name}}</span><span class="bar"></span></div>
- </div>
- <div class="imageDiv">
- <img :src="selIndicator.img" />
- </div>
- <div class="textCont">
- 平均<span>{{selIndicator.name}}</span><span class="value">234</span><span>
- {{selIndicator.unit}}
- </span>
- </div> -->
- <div class="allIndicator">
- <div
- class="eachItem "
- v-for="item in allIndicator"
- @click="clickIndicator(item)"
- v-bind:class="{'select':item.id==selIndicator.id}"
- >
- <div class="title">{{item.name}}</div>
- <div
- class="textCont"
- v-show="item.id==selIndicator.id"
- >22{{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 floorData"
- :key="index"
- >
- <div class="floor-num"><span>{{item.floorName}}</span></div>
- <div class="floor-space">
- <div
- class="space-box"
- v-for="(childItem,id) in item.data"
- :key="id"
- >
- <div class="space-name">{{childItem.name}}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'FloorSpace',
- data() {
- return {
- selIndicator: {},
- allIndicator: [{
- id: 'temp',
- name: '温度',
- img: require('../../assets/horImg/wendu.png'),
- unit: '℃'
- }, {
- id: 'humidity',
- name: '湿度',
- img: require('../../assets/horImg/shidu.png'),
- unit: '%'
- }, {
- id: 'co2',
- name: 'CO₂',
- img: require('../../assets/horImg/co2.png'),
- unit: 'ppm'
- }, {
- id: 'methanal',
- name: '甲醛',
- img: require('../../assets/horImg/jiaquan.png'),
- unit: 'mg/m³'
- }, {
- id: 'pm25',
- name: 'PM2.5',
- img: require('../../assets/horImg/pm25.png'),
- unit: 'ug/m³'
- }],
- floorData: [
- {
- floorName: '8F',
- data: [
- { id: 1, name: '空间1' },
- { id: 2, name: '空间2' },
- { id: 3, name: '空间3' },
- { id: 1, name: '空间4' },
- { id: 2, name: '空间5' },
- { id: 3, name: '空间6' },
- { id: 1, name: '空间1' },
- { id: 2, name: '空间2' },
- { id: 3, name: '空间3' },
- { id: 1, name: '空间4' },
- { id: 2, name: '空间5' },
- { id: 3, name: '空间6' },
- ]
- },
- {
- floorName: '7F',
- data: [
- { id: 1, name: '空间1' },
- { id: 2, name: '空间2' },
- { id: 3, name: '空间3' },
- ]
- },
- ],
- firstPageParams: [],
- secondPageParams: [],
- nowPage: 1, //当前哪一屏幕
- }
- },
- mounted() {
- this.selIndicator = this.allIndicator[0];
- },
- methods: {
- clickIndicator(item) {
- this.selIndicator = item;
- },
- queryFs() {
- //let loadingInstance = Loading.service({ fullscreen: true });
- var loading = this.$loading({ fullscreen: true });
- this.$axios
- .post(this.$api.queryFs, {
- criteria: {
- projectId: "Pj1101020002",
- },
- size: 14,
- page: 1,
- orders: [
- {
- column: "floorSequenceId",
- asc: true,
- },
- ],
- })
- .then((res) => {
- // loadingInstance.close();
- loading.close();
- console.log("queryFs", res);
- var allFloor = res.data.content || [];
- var allFloorNum = allFloor.length;
- //如果超过7层 就显示两屏幕 第一屏 firstPageNum
- //如果超过7层 就显示两屏幕 第二屏 secondPageNum
- var firstPageNum, secondPageNum;
- if (allFloorNum <= 7) {
- firstPageNum = allFloorNum;
- secondPageNum = 0;
- } else {
- firstPageNum = Math.ceil(allFloorNum / 2);
- secondPageNum = Math.floor(allFloorNum / 2);
- }
- //this.nowPage = 1; //取第一屏
- 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.queryParam(this.firstPageParams);
- });
- },
- queryParam(param) {
- var loading = this.$loading({ fullscreen: true });
- this.$axios.post(this.$api.queryParam, param).then((res) => {
- loading.close();
- debugger;
- });
- },
- spaceHandle(floorNum, 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{
- var floorline = Math.ceil(spaceNum / 16); //20-30 3排 30-40个 4排 一层排数
- lineNum = Math.ceil(spaceNum / floorline);
- }
- },
- floorHandle(floorNum, spaceNum) {
- var lineNum = spaceNum;//一行的房间数
- var maxFloorSpace = 0;//一层 最多显示房间数
- 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;
- }
-
- // 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;
- background: #ffffff;
- .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;
- .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;
- .space-name {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 86px;
- width: 90px;
- border-radius: 8px;
- background: #d9f5d6;
- }
- }
- }
- }
- </style>
|