DeviceManage.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div class="content-main common-scroll">
  3. <div class="content-body">
  4. <Row :gutter="8" style="width:100%;height:100%">
  5. <i-col span="5" style="height:100%">
  6. <div class="station-tree">
  7. <div class="station-tree-body">
  8. <tree-filter :defaultData="stationData" :clickAllNode="true" secondCalssName="icon-shebei1" thirdCalssName="icon-shebei" v-if="stationData && stationData.length>0" @treeChange="treeChange"></tree-filter>
  9. </div>
  10. </div>
  11. </i-col>
  12. <i-col span="19" style="height:100%">
  13. <div class="right-main">
  14. <Tabs :value="currentTabs" @on-click="tabsClick" class="common-tabs">
  15. <TabPane v-for="tab in tabsData" :key="tab.label" :label="tab.label" :name="tab.label"></TabPane>
  16. </Tabs>
  17. <device-manage-index v-if="currentTabs=='设备管理'" ref="device"></device-manage-index>
  18. <device-type-manage v-if="currentTabs=='设备类型管理'" ref="deviceType" @changeTree="changeTree"></device-type-manage>
  19. <device-model-manage v-if="currentTabs=='设备监测模型'" ref="deviceModel" @changeTree="changeTree"></device-model-manage>
  20. <model-config v-if="currentTabs=='监测模型配置(开发人员专用)'" ref="modelConfig" @changeTree="changeTree"></model-config>
  21. </div>
  22. </i-col>
  23. </Row>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. import _ from 'lodash'
  29. import DeviceManageIndex from './DeviceManageIndex.vue'
  30. import DeviceTypeManage from './DeviceTypeManage.vue'
  31. import DeviceModelManage from './DeviceModelManage.vue'
  32. import ModelConfig from './ModelConfig.vue'
  33. export default {
  34. name: "DeviceManage",
  35. components:{
  36. DeviceManageIndex,DeviceTypeManage,DeviceModelManage,ModelConfig
  37. },
  38. data() {
  39. return {
  40. stationData: [],
  41. // tabsData: [{label:'设备管理'},{label:'设备类型管理'}],
  42. tabsData: [{label:'设备管理'},{label:'设备类型管理'},{label:'设备监测模型'},{label:'监测模型配置(开发人员专用)'}],
  43. currentTabs: '设备管理',
  44. currentAppId: '',
  45. currentEquTypeId: '',
  46. level: '',
  47. };
  48. },
  49. mounted() {
  50. this.getMetroLevel()
  51. this.currentTabs = sessionStorage.getItem('currentTabs') || '设备管理'
  52. if(this.currentTabs == '设备管理'){
  53. this.$nextTick(()=> {
  54. this.$refs.device.getType()
  55. this.$refs.device.getTableData()
  56. })
  57. } else if (this.currentTabs == '设备类型管理') {
  58. this.$nextTick(()=> {
  59. this.$refs.deviceType.getTableData()
  60. })
  61. } else if(this.currentTabs == '设备监测模型'){
  62. this.$nextTick(()=> {
  63. this.$refs.deviceModel.getTableData()
  64. })
  65. } else {
  66. this.$nextTick(()=> {
  67. this.$refs.modelConfig.getTableData()
  68. })
  69. }
  70. },
  71. // 离开当前路由之前的钩子函数
  72. beforeRouteLeave(to, form, next) {
  73. sessionStorage.removeItem('currentTabs')
  74. next()
  75. },
  76. methods: {
  77. // 获取树形数据
  78. getMetroLevel () {
  79. this.$get('metroapi/application/appEquipmentTypeTree').then(res => {
  80. if (res.httpCode == 1) {
  81. this.stationData = res.data
  82. }
  83. })
  84. },
  85. // 递归函数 每层数组的第一个对象里的属性expand 全展开(true)
  86. getTree(arr) {
  87. return arr.map((v,index) => {
  88. v.selected = false
  89. v.disabled = false
  90. if (index==0) {
  91. v.expand = true
  92. } else {
  93. v.expand = false
  94. }
  95. if (v.children) v.children = this.getTree(v.children);
  96. return v;
  97. });
  98. },
  99. treeChange(arr,level) {
  100. this.level = level
  101. if (this.currentTabs == '设备管理') {
  102. this.$refs.device.tableParams.pageNum = 1
  103. this.getParams ('device',arr,level)
  104. this.$refs.device.getTableData(arr,level)
  105. } else if(this.currentTabs == '设备类型管理'){
  106. this.$nextTick(()=> {
  107. this.getParams ('deviceType',arr,level)
  108. this.$refs.deviceType.tableParams.pageNum = 1
  109. this.$refs.deviceType.getTableData()
  110. })
  111. } else if(this.currentTabs == '设备监测模型'){
  112. this.$nextTick(()=> {
  113. this.getParams ('deviceModel',arr,level)
  114. this.$refs.deviceModel.tableParams.pageNum = 1
  115. this.$refs.deviceModel.getTableData()
  116. })
  117. } else {
  118. this.$nextTick(()=> {
  119. this.getParams ('modelConfig',arr,level)
  120. this.$refs.modelConfig.tableParams.pageNum = 1
  121. this.$refs.modelConfig.getTableData()
  122. })
  123. }
  124. },
  125. getParams (name,arr,level) {
  126. if (level == 2) {
  127. this.$refs[name].tableParams.applicationId = arr[arr.length-1]
  128. this.$refs[name].tableParams.equipmentTypeId = ''
  129. } else if (level == 3) {
  130. this.$refs[name].tableParams.applicationId = arr[arr.length-2]
  131. this.$refs[name].tableParams.equipmentTypeId = arr[arr.length-1]
  132. } else {
  133. this.$refs[name].tableParams.applicationId = ''
  134. this.$refs[name].tableParams.equipmentTypeId = ''
  135. }
  136. },
  137. tabsClick (name) {
  138. document.querySelector(".station-tree-left").scrollTo(0, 0)
  139. sessionStorage.setItem("currentTabs",name)
  140. this.currentTabs = name
  141. this.stationData = this.getTree(this.stationData) // 切换tab页时,清除tree选中情况
  142. if (this.currentTabs == '设备管理') {
  143. this.$nextTick(()=> {
  144. // this.getMetroLevel()
  145. this.$refs.device.getType()
  146. this.$refs.device.getTableData()
  147. })
  148. } else if(this.currentTabs == '设备类型管理'){
  149. this.$nextTick(()=> {
  150. this.$refs.deviceType.getTableData()
  151. })
  152. } else if(this.currentTabs == '设备监测模型'){
  153. this.$nextTick(()=> {
  154. this.$refs.deviceModel.getTableData()
  155. })
  156. } else {
  157. this.$nextTick(()=> {
  158. this.$refs.modelConfig.getTableData()
  159. })
  160. }
  161. },
  162. changeTree () {
  163. this.getMetroLevel()
  164. },
  165. }
  166. };
  167. </script>
  168. <style scoped lang="stylus">
  169. .content-main {
  170. width: 100%;
  171. height: calc(100% - 50px);
  172. overflow: hidden;
  173. }
  174. .common-search {
  175. width: 100%;
  176. }
  177. >>> .common-search .ivu-input {
  178. background-color: #06214D;
  179. border: 1px solid #2355A6;
  180. border-radius: 15px;
  181. color: #fff;
  182. height: 32px;
  183. }
  184. >>> .common-search .ivu-input:focus {
  185. border-color: #0185ea;
  186. }
  187. .content-body {
  188. width: 100%;
  189. height: 100%;
  190. background: #06214D;
  191. }
  192. .station-tree {
  193. height: 100%;
  194. padding: 10px;
  195. }
  196. .station-tree-body {
  197. border: 1px solid #204384;
  198. height: 100%;
  199. padding: 10px;
  200. }
  201. .right-main {
  202. height: 100%;
  203. padding: 10px 0;
  204. }
  205. </style>