diff --git a/src/views/report/Overvoew.vue b/src/views/report/Overvoew.vue index a3b11aa9..7099c1ab 100644 --- a/src/views/report/Overvoew.vue +++ b/src/views/report/Overvoew.vue @@ -380,6 +380,7 @@ export default { const res = await api.userGetUserOrg({}); if (res) { state.option = res.data?.result?.orgTreeList; + state.orgId = res.data?.result?.treeNodeList; state.resetOrgId = res.data?.result?.treeNodeList; state.type = res.data?.result?.userType; @@ -478,7 +479,7 @@ export default { url: "/report/boeu/case/exportAll", data: { name: state.name, - organizationId: state.orgId + orgId: state.orgId ? state.orgId[state.orgId.length - 1] : null, createName: state.creator, @@ -558,7 +559,7 @@ export default { url: "/report/boeu/router/exportAll", data: { name: state.name, - organizationId: state.orgId + orgId: state.orgId ? state.orgId[state.orgId.length - 1] : null, createName: state.creator, @@ -1061,6 +1062,14 @@ export default { width: 120, align: "center", }, + { + title: "发布时间", + dataIndex: "publishTime", + ellipsis: true, + key: "publishTime", + width: 120, + align: "center", + }, { title: "状态", dataIndex: "examStatus",