修改组织请求参数,添加发布时间

This commit is contained in:
BOE\10867418
2023-09-04 08:49:30 +08:00
parent 5c279b9ba7
commit 0312f6de02

View File

@@ -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",