systemMenu.vue 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <div class='system-menu'>
  3. <div class='system' v-for='(system ,index) in systemData' :key='index' @click='changeSystem(system)' :class='system.active?"active":""'>
  4. <i class='iconfont' :class='system.icon'></i>
  5. <div>{{system.text}}</div>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. /**
  11. * 设备设施左侧菜单
  12. * 点击后,传回父组件, text, categoryId, smsxt 三个字段
  13. */
  14. import { mapGetters, mapActions, mapMutations } from 'vuex'
  15. export default {
  16. name: 'systemMenu',
  17. props: {},
  18. components: {},
  19. data() {
  20. return {
  21. systemData: [
  22. { text: '供电', categoryId: 'GDXT', smsxt: '1001', icon: 'wanda-gongdian1', active: true },
  23. { text: '暖通', categoryId: 'NTXT', smsxt: '1002', icon: 'wanda-nuantong1', active: false },
  24. { text: '消防', categoryId: 'XFXT', smsxt: '1003', icon: 'wanda-xiaofang1', active: false },
  25. { text: '弱电', categoryId: 'RDXT', smsxt: '1004', icon: 'wanda-ruodian1', active: false },
  26. { text: '给排水', categoryId: 'JPSXT', smsxt: '1005', icon: 'wanda-geipaishui1', active: false },
  27. { text: '电梯', categoryId: 'DTXT', smsxt: '1006', icon: 'wanda-dianti1', active: false },
  28. { text: '燃气', categoryId: 'RQXT', smsxt: '1007', icon: 'wanda-ranqi1', active: false },
  29. { text: '土建', categoryId: 'SCPZ', smsxt: '1008', icon: 'wanda-tujian1', active: false },
  30. ],
  31. }
  32. },
  33. create() {},
  34. beforeMount() {},
  35. mounted() {},
  36. methods: {
  37. ...mapMutations(['SETCATEGORYID', 'SETSMSXT']),
  38. /**
  39. * 点击系统,进行切换,并传回 父组件选中系统值
  40. */
  41. changeSystem({ text, categoryId, smsxt }) {
  42. this.systemData.map((item) => {
  43. item.active = false
  44. if (item.categoryId === categoryId) {
  45. item.active = true
  46. }
  47. })
  48. // 设置 categoryId,smsxt
  49. this.SETCATEGORYID(categoryId)
  50. this.SETSMSXT(smsxt)
  51. this.$emit('chooseSystem', { text, categoryId, smsxt })
  52. },
  53. },
  54. }
  55. </script>
  56. <style lang='less' scoped>
  57. .system-menu {
  58. width: 100%;
  59. height: 100%;
  60. display: flex;
  61. background-color: #f5f6f7;
  62. flex-direction: column;
  63. text-align: center;
  64. font-size: 14px;
  65. font-weight: 400;
  66. color: #666666;
  67. .system {
  68. flex: 1;
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: center;
  72. i {
  73. margin-bottom: 10px;
  74. }
  75. i:before {
  76. font-size: 20px;
  77. }
  78. }
  79. // 激活的系统图标颜色
  80. .active {
  81. background-color: #fff;
  82. color: #025baa;
  83. i {
  84. color: #025baa;
  85. }
  86. }
  87. }
  88. </style>