index-time.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <div class="index-time">
  3. <div class="content">
  4. <div class="left-box">
  5. <!-- 左侧树菜单 -->
  6. <div class="card-toggle">
  7. <div :class="gasType == 'gasDayNight' ? 'card-item1' : 'card-item'"
  8. @click="handlerToggle('gasDayNight')">夜班</div>
  9. <div :class="gasType == 'gasDayEarly' ? 'card-item1' : 'card-item'"
  10. @click="handlerToggle('gasDayEarly')">早班</div>
  11. <div :class="gasType == 'gasDayNoon' ? 'card-item1' : 'card-item'"
  12. @click="handlerToggle('gasDayNoon')">中班</div>
  13. </div>
  14. <div v-if="listArr.length != 0" class="card-file">
  15. <fileSystem :selected="selected" :list="listArr" :draggable="true" @on-click="onClick">
  16. <template #icon="{ item }">
  17. <template v-if="item.isFolder">
  18. <SvgIcon v-if="item.isexpanded" size="18" name="file-open" />
  19. <SvgIcon v-else size="18" name="file-close" />
  20. </template>
  21. <treeIcon class="iconfont" :title="item.title" v-else />
  22. </template>
  23. </fileSystem>
  24. </div>
  25. </div>
  26. <div class="right-box">
  27. <a-table :columns="columns" size="small" :data-source="tableData" :scroll="{ y: 754 }" class="tableW"
  28. :pagination="false"></a-table>
  29. </div>
  30. </div>
  31. </div>1
  32. </template>
  33. <script setup lang="ts">
  34. import { ref, nextTick, reactive, onMounted } from 'vue';
  35. import fileSystem from './comment/common/cameraTree.vue';
  36. import { SvgIcon } from '/@/components/Icon';
  37. import treeIcon from './comment/common/Icon/treeIcon.vue';
  38. import { columnsType, columnBlt, columnBd, columnSgt, columnCctr, columnYjl, columnCct, columnWlml } from './gasReportInspect.data';
  39. import { queryReportData, queryReportList } from './gasReportInspect.api';
  40. import { useGlobSetting } from '/@/hooks/setting';
  41. let glob = useGlobSetting();
  42. let gasType = ref('gasDayNight')
  43. //左侧菜单列表
  44. let listArr = reactive<any[]>([]);
  45. //lxh 当前选中树节点
  46. let selected = reactive<any>({
  47. id: null,
  48. pid: null,
  49. title: '',
  50. isFolder: false,
  51. });
  52. let columns = glob.sysOrgCode == 'sdmtjtbltmk' ? columnBlt : glob.sysOrgCode == 'sdmtjtbdmk' ? columnBd : glob.sysOrgCode == 'sdmtjtsgtmk' ? columnSgt : glob.sysOrgCode == 'sdmtjtcctrk' ? columnCctr : glob.sysOrgCode == 'sdmtjtyjlmk' ? columnYjl : glob.sysOrgCode == 'sdmtjtcctmk' ? columnCct : glob.sysOrgCode == 'sdmtjtwlmlmk' ? columnWlml : glob.sysOrgCode == 'sdmtjtjjmk' ? columnWlml : glob.sysOrgCode == 'sdmtjthlgmk' ? columnWlml : columnsType
  53. let tableData = ref<any[]>([])
  54. let tableList = ref<any[]>([])
  55. let handlerToggle = (param) => {
  56. gasType.value = param
  57. getTreeList({ type: gasType.value })
  58. }
  59. //获取左侧菜单树
  60. async function getTreeList(param) {
  61. // const res = await queryReportData({ type: param })
  62. listArr.length = 0
  63. const res = await queryReportList({ pageNo: 1, pageSize: 100, ...param })
  64. tableList.value = res.records || []
  65. selected.id = tableList.value[0].id;
  66. selected.pid = tableList.value[0].pid;
  67. selected.title = tableList.value[0].title;
  68. selected.isFolder = tableList.value[0].isFolder;
  69. selected.ppid = tableList.value[0].ppid
  70. if (tableList.value && tableList.value.length != 0) {
  71. tableList.value.forEach(el => {
  72. listArr.push({
  73. id: el.id,
  74. pid: null,
  75. title: el.fileName,
  76. isFolder: true,
  77. })
  78. })
  79. }
  80. tableData.value = JSON.parse(tableList.value[0].content)
  81. }
  82. //点击目录
  83. function onClick(node) {
  84. selected.id = node.id;
  85. selected.pid = node.pid;
  86. selected.title = node.title;
  87. selected.isFolder = node.isFolder;
  88. selected.ppid = node.ppid
  89. tableData.value = JSON.parse(tableList.value.filter(v => v.id == selected.id)[0].content)
  90. };
  91. onMounted(() => {
  92. getTreeList({ type: gasType.value })
  93. })
  94. </script>
  95. <style lang="less" scoped>
  96. .index-time {
  97. width: 100%;
  98. height: 100%;
  99. position: relative;
  100. .content {
  101. width: 100%;
  102. height: 100%;
  103. display: flex;
  104. flex-direction: row;
  105. justify-content: space-between;
  106. align-items: flex-start;
  107. position: relative;
  108. // z-index: 999;
  109. .left-box {
  110. width: 15%;
  111. height: 100%;
  112. padding: 20px;
  113. border: 1px solid #99e8ff66;
  114. background: #27546e1a;
  115. box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  116. -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  117. -webkit-box-shadow: 0px 0px 50px 1px rgb(149 235 255 / 5%) inset;
  118. overflow-y: auto;
  119. .card-toggle {
  120. height: 30px;
  121. display: flex;
  122. justify-content: space-between;
  123. align-items: center;
  124. margin-bottom: 10px;
  125. color: #fff;
  126. .card-item {
  127. width: calc(33.3% - 5px);
  128. height: 100%;
  129. display: flex;
  130. justify-content: center;
  131. align-items: center;
  132. background: #1a5b7f;
  133. border-radius: 5px;
  134. cursor: pointer;
  135. }
  136. .card-item1 {
  137. width: calc(33.3% - 5px);
  138. height: 100%;
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. background: #5dd8f7;
  143. border-radius: 5px;
  144. cursor: pointer;
  145. }
  146. }
  147. .card-file {
  148. height: calc(100% - 40px);
  149. overflow-y: auto;
  150. }
  151. // lxh
  152. .iconfont {
  153. color: #fff;
  154. font-size: 12px;
  155. margin-left: 5px;
  156. }
  157. }
  158. .right-box {
  159. width: 85%;
  160. height: 100%;
  161. padding: 0px 0px 0px 15px;
  162. box-sizing: border-box;
  163. }
  164. }
  165. }
  166. ::v-deep .zxm-table-thead>tr>th:last-child,
  167. .zxm-table-thead .zxm-table-column-title:last-child {
  168. border-right: 1px solid #91e9fe !important;
  169. }
  170. </style>