|
@@ -24,8 +24,8 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right-box">
|
|
|
- <a-table :columns="columns" size="small" :data-source="tableData" :scroll="{ y: 754 }"
|
|
|
- class="tableW" :pagination="false"></a-table>
|
|
|
+ <a-table :columns="columns" size="small" :data-source="tableData" :scroll="{ y: 754 }" class="tableW"
|
|
|
+ :pagination="false"></a-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>1
|
|
@@ -36,11 +36,11 @@ import { ref, nextTick, reactive, onMounted } from 'vue';
|
|
|
import fileSystem from './comment/common/cameraTree.vue';
|
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
|
import treeIcon from './comment/common/Icon/treeIcon.vue';
|
|
|
-import { columnsType,columnBlt,columnBd,columnSgt,columnCctr,columnYjl,columnCct,columnWlml} from './gasReportInspect.data';
|
|
|
-import { queryReportData } from './gasReportInspect.api';
|
|
|
+import { columnsType, columnBlt, columnBd, columnSgt, columnCctr, columnYjl, columnCct, columnWlml } from './gasReportInspect.data';
|
|
|
+import { queryReportData, queryReportList } from './gasReportInspect.api';
|
|
|
import { useGlobSetting } from '/@/hooks/setting';
|
|
|
|
|
|
-let glob= useGlobSetting();
|
|
|
+let glob = useGlobSetting();
|
|
|
let gasType = ref('gasDayNight')
|
|
|
//左侧菜单列表
|
|
|
let listArr = reactive<any[]>([]);
|
|
@@ -51,27 +51,35 @@ let selected = reactive<any>({
|
|
|
title: '',
|
|
|
isFolder: false,
|
|
|
});
|
|
|
-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 : columnsType
|
|
|
+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 : columnsType
|
|
|
let tableData = ref<any[]>([])
|
|
|
+let tableList = ref<any[]>([])
|
|
|
let handlerToggle = (param) => {
|
|
|
gasType.value = param
|
|
|
- getTreeList(gasType.value)
|
|
|
+ getTreeList({ type: gasType.value })
|
|
|
}
|
|
|
//获取左侧菜单树
|
|
|
async function getTreeList(param) {
|
|
|
+ // const res = await queryReportData({ type: param })
|
|
|
listArr.length = 0
|
|
|
- const res = await queryReportData({ type: param })
|
|
|
- console.log(res, '早中晚----------------')
|
|
|
- if (res) {
|
|
|
- listArr.push({
|
|
|
- id: res.id,
|
|
|
- pid: null,
|
|
|
- title: res.fileName,
|
|
|
- isFolder: true,
|
|
|
+ const res = await queryReportList({ pageNo: 1, pageSize: 100, ...param })
|
|
|
+ tableList.value = res.records || []
|
|
|
+ selected.id = tableList.value[0].id;
|
|
|
+ selected.pid = tableList.value[0].pid;
|
|
|
+ selected.title = tableList.value[0].title;
|
|
|
+ selected.isFolder = tableList.value[0].isFolder;
|
|
|
+ selected.ppid = tableList.value[0].ppid
|
|
|
+ if (tableList.value && tableList.value.length != 0) {
|
|
|
+ tableList.value.forEach(el => {
|
|
|
+ listArr.push({
|
|
|
+ id: el.id,
|
|
|
+ pid: null,
|
|
|
+ title: el.fileName,
|
|
|
+ isFolder: true,
|
|
|
+ })
|
|
|
})
|
|
|
- tableData.value = JSON.parse(res.content)
|
|
|
}
|
|
|
-
|
|
|
+ tableData.value = JSON.parse(tableList.value[0].content)
|
|
|
}
|
|
|
//点击目录
|
|
|
function onClick(node) {
|
|
@@ -80,10 +88,11 @@ function onClick(node) {
|
|
|
selected.title = node.title;
|
|
|
selected.isFolder = node.isFolder;
|
|
|
selected.ppid = node.ppid
|
|
|
+ tableData.value = JSON.parse(tableList.value.filter(v => v.id == selected.id)[0].content)
|
|
|
};
|
|
|
|
|
|
onMounted(() => {
|
|
|
- getTreeList(gasType.value)
|
|
|
+ getTreeList({ type: gasType.value })
|
|
|
})
|
|
|
</script>
|
|
|
|
|
@@ -92,6 +101,7 @@ onMounted(() => {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
+
|
|
|
.content {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
@@ -165,7 +175,9 @@ onMounted(() => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-::v-deep .zxm-table-thead > tr > th:last-child, .zxm-table-thead .zxm-table-column-title:last-child{
|
|
|
+
|
|
|
+::v-deep .zxm-table-thead>tr>th:last-child,
|
|
|
+.zxm-table-thead .zxm-table-column-title:last-child {
|
|
|
border-right: 1px solid #91e9fe !important;
|
|
|
}
|
|
|
</style>
|