mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 19:36:46 +08:00
修改组织请求参数,添加发布时间
This commit is contained in:
@@ -380,6 +380,7 @@ export default {
|
|||||||
const res = await api.userGetUserOrg({});
|
const res = await api.userGetUserOrg({});
|
||||||
if (res) {
|
if (res) {
|
||||||
state.option = res.data?.result?.orgTreeList;
|
state.option = res.data?.result?.orgTreeList;
|
||||||
|
|
||||||
state.orgId = res.data?.result?.treeNodeList;
|
state.orgId = res.data?.result?.treeNodeList;
|
||||||
state.resetOrgId = res.data?.result?.treeNodeList;
|
state.resetOrgId = res.data?.result?.treeNodeList;
|
||||||
state.type = res.data?.result?.userType;
|
state.type = res.data?.result?.userType;
|
||||||
@@ -478,7 +479,7 @@ export default {
|
|||||||
url: "/report/boeu/case/exportAll",
|
url: "/report/boeu/case/exportAll",
|
||||||
data: {
|
data: {
|
||||||
name: state.name,
|
name: state.name,
|
||||||
organizationId: state.orgId
|
orgId: state.orgId
|
||||||
? state.orgId[state.orgId.length - 1]
|
? state.orgId[state.orgId.length - 1]
|
||||||
: null,
|
: null,
|
||||||
createName: state.creator,
|
createName: state.creator,
|
||||||
@@ -558,7 +559,7 @@ export default {
|
|||||||
url: "/report/boeu/router/exportAll",
|
url: "/report/boeu/router/exportAll",
|
||||||
data: {
|
data: {
|
||||||
name: state.name,
|
name: state.name,
|
||||||
organizationId: state.orgId
|
orgId: state.orgId
|
||||||
? state.orgId[state.orgId.length - 1]
|
? state.orgId[state.orgId.length - 1]
|
||||||
: null,
|
: null,
|
||||||
createName: state.creator,
|
createName: state.creator,
|
||||||
@@ -1061,6 +1062,14 @@ export default {
|
|||||||
width: 120,
|
width: 120,
|
||||||
align: "center",
|
align: "center",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "发布时间",
|
||||||
|
dataIndex: "publishTime",
|
||||||
|
ellipsis: true,
|
||||||
|
key: "publishTime",
|
||||||
|
width: 120,
|
||||||
|
align: "center",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "状态",
|
title: "状态",
|
||||||
dataIndex: "examStatus",
|
dataIndex: "examStatus",
|
||||||
|
|||||||
Reference in New Issue
Block a user