floorList.vue 9.1 KB

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