floorList.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /**
  2. *@author:Guoxiaohuan
  3. *@date:2020.06.02
  4. *@info:楼层列表
  5. */
  6. <template>
  7. <div class='floor-box'>
  8. <div class='floor-list'>
  9. <div class='icon-top' v-if='floorsArr.length>8'>
  10. <!-- @click='changeFloor(1,currIndex)' -->
  11. <img v-show='parseInt(marginTop) !== 0' v-repeat-click='increase' src='@/assets/imgs/iconBlackTop.png' alt />
  12. <img class='disabled' v-show='parseInt(marginTop) === 0' src='@/assets/imgs/iconLightTop.png' alt />
  13. </div>
  14. <div class='floor-out' :style='{ height:conHeight + "px" }'>
  15. <!-- 放开marginTop样式 -->
  16. <div class='floor-center' :style='{ marginTop : marginTop }'>
  17. <div
  18. class='floor-item'
  19. :class='item.seq == currentFloorId?"isActive":""'
  20. @click='tabFloor(item,index)'
  21. v-for='(item,index) in floorsArr'
  22. :key='index'
  23. >{{item.code}}</div>
  24. </div>
  25. </div>
  26. <div class='icon-bottom' v-if='floorsArr.length>8'>
  27. <!-- v-repeat-click='decrease' -->
  28. <img v-show='parseInt(marginTop) !== marginTopMax' v-repeat-click='decrease' src='@/assets/imgs/iconBlackBottom.png' alt />
  29. <img class='disabled' v-show='parseInt(marginTop) === marginTopMax' src='@/assets/imgs/iconLightBottom.png' alt />
  30. </div>
  31. </div>
  32. </div>
  33. </template>
  34. <script>
  35. import store from '../store'
  36. import { mapGetters } from 'vuex'
  37. import RepeatClick from '@/directives/repeat-click'
  38. export default {
  39. directives: {
  40. repeatClick: RepeatClick,
  41. },
  42. data() {
  43. return {
  44. floorId: 'F1',
  45. showT: true,
  46. showB: true,
  47. num: 0,
  48. floorMapIdName: '',
  49. floor: {},
  50. currentFloorId: null,
  51. marginTop: 0,
  52. marginTopMax: 0,
  53. startTime: '',
  54. endTime: '',
  55. floorObj2: {},
  56. showNumber: 8, //需要展示的楼层数 //TODO:
  57. height: 39, //一个楼层的高度
  58. currIndex: 0, //当前楼层在 楼层数组中的下标,上下箭头使用
  59. conHeight: 0, // floor-out 的高度
  60. }
  61. },
  62. props: {
  63. floorsArr: {
  64. type: Array,
  65. default: () => {
  66. return []
  67. },
  68. },
  69. // 默认true,
  70. // 1. 切换楼层后,是否触发 cookie,vuex数据修改,
  71. // 2. 在fenbuPic组件中为false, 1)不触发cookie,vuex , 2) 选中的楼层ID,为楼层列表数组floorIdArr的第0个
  72. changeDataFlag: {
  73. type: Boolean,
  74. default: true,
  75. },
  76. },
  77. computed: {
  78. ...mapGetters(['legendTable', 'floorObj']),
  79. },
  80. mounted() {
  81. this.init()
  82. },
  83. methods: {
  84. /**
  85. * @description 点击上箭头,marginTop<0时执行楼层滚动
  86. */
  87. increase() {
  88. let marginTop = parseInt(this.marginTop)
  89. marginTop < 0 && this.changeFloor(1, this.currIndex)
  90. },
  91. /**
  92. * @description 点击下箭头,marginTop小于最大值marginTopMax时,执行楼层滚动
  93. */
  94. decrease() {
  95. let marginTop = Math.abs(parseInt(this.marginTop)),
  96. marginTopMax = Math.abs(parseInt(this.marginTopMax))
  97. marginTop < marginTopMax && this.changeFloor(-1, this.currIndex)
  98. },
  99. init() {
  100. if (!this.floorsArr.length) {
  101. return false
  102. }
  103. this.floorIdArr = []
  104. this.floorsArr.map((item) => {
  105. this.floorIdArr.push(item.seq)
  106. if (item.seq == this.$cookie.get('currentFloorId')) {
  107. this.floor = item
  108. } else {
  109. this.floor = this.floorObj
  110. }
  111. })
  112. this.currentFloorId = Number(this.$cookie.get('currentFloorId') || this.floor.seq)
  113. // bug fix 修复 fenbuPic 弹窗中,楼层不能选中的问题
  114. // 如果 floorIdArr 不在 floorIdArr数组中,或者changeDataFlag为false(弹窗组件中的楼层组件),使用 floorIdArr[0], 而不使用 cookie
  115. let index = this.floorIdArr.findIndex((item) => item === this.currentFloorId)
  116. if (index === -1 || !this.changeDataFlag) {
  117. this.currentFloorId = this.floorIdArr[0]
  118. }
  119. // 修复在设备设施页面中,楼层组件不够 8个楼层时,出现的样式问题,
  120. this.conHeight = this.floorsArr.length * 37.5
  121. this.conHeight = this.conHeight >= 300 ? 300 : this.conHeight
  122. this.showNumber = this.floorsArr.length > 8 ? 8 : this.floorsArr.length
  123. this.marginTopMax = -(this.floorIdArr.length - this.showNumber) * this.height
  124. this.changeFloor(0, index)
  125. },
  126. /**
  127. * @name changeFloor
  128. * @param {Number} flag 1:向上滚动楼层, -1向下滚动 , 0:进入页面初始化时,执行位置处理
  129. * @description 点击图例下方的,上下切换按钮
  130. */
  131. changeFloor(flag, index) {
  132. const len = this.floorIdArr.length
  133. // let index = this.floorIdArr.findIndex(item => item === this.currentFloorId)
  134. this.currIndex = index
  135. // 点击上箭头
  136. if (flag === 1) {
  137. index--
  138. this.currIndex = index
  139. } else if (flag === -1) {
  140. //点击下箭头
  141. index++
  142. this.currIndex = index
  143. }
  144. // FEAT: 点击上下箭头,不触发cookie更改 , 只有初始化时,才进行选中的楼层 状态更新
  145. if (flag === 0) {
  146. this.handleCookie()
  147. }
  148. this.handlePosition(flag, index, len)
  149. },
  150. handleCookie() {
  151. let currentFloor = this.floorsArr.filter((item) => item.seq == this.currentFloorId)[0]
  152. if (currentFloor) {
  153. // 如果 changeDataFlag为true(不是在 分布图弹窗组件中的 楼层组件),设置cookie,vuex
  154. if (this.changeDataFlag) {
  155. this.$cookie.set('floorNow', currentFloor.code || '', 3)
  156. this.$cookie.set('floorMapId', currentFloor.gname, 3)
  157. this.$cookie.set('currentFloorId', currentFloor.seq, 3)
  158. this.floorId = this.$cookie.get('floorNow') || currentFloor.code
  159. this.floorMapIdName = this.$cookie.get('floorMapId') || currentFloor.gname
  160. store.commit('SETCURRENTFLOOR', currentFloor)
  161. }
  162. this.$emit('emitFloor', currentFloor)
  163. }
  164. },
  165. /**
  166. * @name tabFloor
  167. * @param {Object} item 选中的楼层信息
  168. * @param {Number} index 楼层信息在floorsArr数组中的位置
  169. */
  170. tabFloor(item, index) {
  171. this.currentFloorId = this.floorIdArr[index]
  172. this.handleCookie()
  173. this.handlePosition(2, index, this.floorIdArr.length)
  174. this.viewLengend()
  175. },
  176. viewLengend() {
  177. if (this.legendTable.length > 0) {
  178. this.$store.commit('SETSHOWVIEW', 1)
  179. } else {
  180. this.$store.commit('SETSHOWVIEW', 0)
  181. }
  182. },
  183. /**
  184. * @description 楼层位置动画处理
  185. * @param flag 1:向上滚动楼层, -1向下滚动 , 0:进入页面初始化时,执行位置处理 2:直接点击楼层
  186. * @param index 楼层 在floorIdArr中的下标
  187. * @param len floorIdArr长度
  188. */
  189. handlePosition(flag, index, len) {
  190. // 取出当前 marginTop
  191. let marginTop = parseInt(this.marginTop)
  192. switch (flag) {
  193. // 初始化进入页面,位置处理
  194. case 0:
  195. // 直接点击楼层,滚动楼层
  196. case 2:
  197. // 将 marginTop 设置为对应的index 应滚动的距离
  198. marginTop = -index * this.height
  199. // marginTop 过大时,取最大值marginTopMax
  200. if (Math.abs(marginTop) >= Math.abs(this.marginTopMax)) {
  201. marginTop = parseInt(this.marginTopMax)
  202. }
  203. // marginTop>0时,取0,防止楼层上边出现空白
  204. marginTop = marginTop >= 0 ? 0 : marginTop
  205. // index为0,marginTop设置为0
  206. index == 0 && (marginTop = 0)
  207. // index为最后一个,设置为最大marginTopMax
  208. index == len - 1 && (marginTop = parseInt(this.marginTopMax))
  209. this.marginTop = marginTop + 'px'
  210. break
  211. // 1:向上滚动楼层
  212. case 1:
  213. this.marginTop = marginTop + this.height + 'px'
  214. break
  215. // -1向下滚动楼层
  216. case -1:
  217. this.marginTop = marginTop + this.height * -1 + 'px'
  218. break
  219. default:
  220. break
  221. }
  222. },
  223. },
  224. }
  225. </script>
  226. <style lang="less" scoped>
  227. .floor-box {
  228. .floor-list {
  229. width: 44px;
  230. // height: 212px;
  231. background: rgba(255, 255, 255, 1);
  232. box-shadow: 0px 2px 15px 0px rgba(31, 36, 41, 0.08);
  233. border-radius: 2px;
  234. position: relative;
  235. padding: 6px 4px;
  236. text-align: center;
  237. .floor-out {
  238. // max-height: 300px; //TODO:
  239. min-height: 38px;
  240. overflow: hidden;
  241. position: relative;
  242. overflow-y: auto;
  243. &::-webkit-scrollbar {
  244. display: none;
  245. }
  246. .floor-center {
  247. transition: all linear 0.5s;
  248. .floor-item {
  249. line-height: 28px;
  250. height: 28px;
  251. cursor: pointer;
  252. position: relative;
  253. &::after {
  254. position: absolute;
  255. left: 50%;
  256. margin-left: -20%;
  257. bottom: -6px;
  258. content: '';
  259. width: 14px;
  260. height: 1px;
  261. background: rgba(195, 199, 203, 1);
  262. border: 0px solid rgba(228, 229, 231, 1);
  263. }
  264. & + .floor-item {
  265. margin-top: 10px;
  266. }
  267. }
  268. }
  269. }
  270. .icon-top {
  271. cursor: pointer;
  272. height: 18px;
  273. img {
  274. width: 18px;
  275. height: 100%;
  276. margin-top: -10px;
  277. }
  278. }
  279. .icon-bottom {
  280. cursor: pointer;
  281. height: 18px;
  282. img {
  283. width: 18px;
  284. height: 100%;
  285. margin-top: -10px;
  286. }
  287. }
  288. .isActive {
  289. border-radius: 4px;
  290. color: #025baa;
  291. background: #e1f2ff;
  292. }
  293. }
  294. .disabled {
  295. cursor: not-allowed !important;
  296. }
  297. }
  298. </style>