Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4c2826dc
authored
2025-03-05 18:25:08 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
添加专区名称来源
1 parent
755e4547
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
src/views/data_asset/qualityEvaluate.vue
src/views/data_asset/registerManagemant.vue
src/views/data_product/productListing.vue
src/views/data_asset/qualityEvaluate.vue
View file @
4c2826d
...
...
@@ -40,6 +40,7 @@ const tableFields = ref([
// { label: "企业名称", field: "tenantName", width: 240, align: "left" },
{
label
:
"评估机构"
,
field
:
"evaluationAgencyName"
,
width
:
250
,
align
:
"left"
},
{
label
:
"审批状态"
,
field
:
"approveVO"
,
type
:
"approveTag"
,
width
:
96
,
align
:
'center'
},
{
label
:
"专区名称"
,
field
:
"zqName"
,
width
:
160
,
align
:
"left"
},
]);
const
deploymentId
=
ref
(
''
);
...
...
@@ -207,13 +208,13 @@ const getTableBtns = (row) => {
if
(
flowState
===
2
)
{
btnsArr
=
[{
label
:
"通过"
,
value
:
"pass"
},
{
label
:
"驳回"
,
value
:
"reject"
}]
}
if
(
flowState
===
3
)
{
if
(
flowState
===
3
&&
!
row
.
zqName
)
{
btnsArr
.
push
({
label
:
"删除"
,
value
:
"del"
})
}
if
(
flowState
===
3
&&
bizApproveState
!=
'D'
)
{
if
(
flowState
===
3
&&
bizApproveState
!=
'D'
&&
!
row
.
zqName
)
{
btnsArr
.
push
({
label
:
"重新提交"
,
value
:
"redit"
})
}
if
(
isShowCancel
)
{
if
(
isShowCancel
&&
!
row
.
zqName
)
{
btnsArr
.
push
({
label
:
"撤销"
,
value
:
"revoke"
})
}
if
(
flowState
!==
1
)
{
...
...
src/views/data_asset/registerManagemant.vue
View file @
4c2826d
...
...
@@ -100,6 +100,7 @@ const tableFields = ref([{ label: "序号", type: "index", width: 56, align: "ce
{
label
:
"数据分类"
,
field
:
"dataCategoryName"
,
width
:
120
,
align
:
"left"
},
{
label
:
"存储方式"
,
field
:
"storageFormName"
,
width
:
120
,
align
:
"left"
},
{
label
:
"数交所名称"
,
field
:
"exchangeName"
,
width
:
160
,
align
:
"left"
},
{
label
:
"专区名称"
,
field
:
"zqName"
,
width
:
160
,
align
:
"left"
},
{
label
:
"状态"
,
field
:
"approveState"
,
type
:
"tag"
,
width
:
96
,
align
:
'center'
,
getName
:
(
scope
)
=>
{
const
approveVO
=
scope
.
row
.
approveVO
||
{}
...
...
@@ -190,12 +191,12 @@ const getTableBtns = (row, includeDetail = true) => {
if
(
flowState
===
2
)
{
btnsArr
.
push
(...[{
label
:
"通过"
,
value
:
"pass"
},
{
label
:
"驳回"
,
value
:
"reject"
}])
}
else
if
(
flowState
===
3
)
{
if
(
bizApproveState
!=
'D'
)
{
if
(
bizApproveState
!=
'D'
&&
!
row
.
zqName
)
{
btnsArr
.
push
({
label
:
"重新提交"
,
value
:
"edit"
})
}
}
isShowCancel
&&
btnsArr
.
push
({
label
:
"撤销"
,
value
:
"revoke"
})
flowState
===
3
&&
btnsArr
.
push
({
label
:
"删除"
,
value
:
"delete"
})
isShowCancel
&&
!
row
.
zqName
&&
btnsArr
.
push
({
label
:
"撤销"
,
value
:
"revoke"
})
flowState
===
3
&&
!
row
.
zqName
&&
btnsArr
.
push
({
label
:
"删除"
,
value
:
"delete"
})
}
return
btnsArr
}
...
...
src/views/data_product/productListing.vue
View file @
4c2826d
...
...
@@ -129,6 +129,7 @@ const tableInfo = ref({
return
scope
.
row
.
listingStatus
==
'Y'
?
'已上架'
:
'未上架'
;
}
},
{
label
:
"专区名称"
,
field
:
"zqName"
,
width
:
160
,
align
:
"left"
},
{
label
:
"修改时间"
,
field
:
"updateTime"
,
width
:
TableColumnWidth
.
DATETIME
},
],
loading
:
false
,
...
...
@@ -179,13 +180,13 @@ const tableInfo = ref({
if
(
flowState
===
2
)
{
list
=
[{
label
:
"通过"
,
value
:
"pass"
},
{
label
:
"驳回"
,
value
:
"reject"
}]
}
if
(
flowState
===
3
)
{
if
(
flowState
===
3
&&
!
row
.
zqName
)
{
list
.
push
({
label
:
"删除"
,
value
:
"del"
})
}
if
(
flowState
===
3
&&
bizApproveState
!=
'D'
)
{
if
(
flowState
===
3
&&
bizApproveState
!=
'D'
&&
!
row
.
zqName
)
{
list
.
push
({
label
:
"重新提交"
,
value
:
"redit"
})
//已驳回
}
if
(
isShowCancel
)
{
if
(
isShowCancel
&&
!
row
.
zqName
)
{
list
.
push
({
label
:
"撤销"
,
value
:
"revoke"
})
}
if
(
flowState
!==
1
)
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment