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
e414f870
authored
2025-12-02 18:23:29 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
产品上架
1 parent
212cf865
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
16 deletions
src/views/data_facilitator/certificationAuditDetail.vue
src/views/data_facilitator/settleDetail.vue
src/views/data_product/productListing.vue
src/views/data_product/productListingDetail.vue
src/views/data_facilitator/certificationAuditDetail.vue
View file @
e414f87
...
...
@@ -1253,15 +1253,15 @@ const viewVoucherFile = () => {
<span
class=
"title_text"
>
已撤销
</span>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'R'"
>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'R'"
style=
"padding: 0px 16px 10px;"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
平台审批意见:
</span>
<span
class=
"item_label"
>
审批意见:
</span>
<span
class=
"item_value"
>
{{
flowDetail
?.
tdsApproveSuggest
||
'--'
}}
</span>
</div>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'E'"
>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'E'"
style=
"padding: 0px 16px 10px;"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
失败原因:
</span>
...
...
src/views/data_facilitator/settleDetail.vue
View file @
e414f87
...
...
@@ -324,7 +324,7 @@ const fileKeyNames = ref({
<span
class=
"title_text"
>
已撤销
</span>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'R'"
>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'R'"
style=
"padding: 0px 16px 10px;"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
平台审批意见:
</span>
...
...
@@ -332,7 +332,7 @@ const fileKeyNames = ref({
</div>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'E'"
>
<div
class=
"panel_body"
v-if=
"flowDetail.bizApproveState == 'E'"
style=
"padding: 0px 16px 10px;"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
失败原因:
</span>
...
...
src/views/data_product/productListing.vue
View file @
e414f87
...
...
@@ -106,7 +106,7 @@ const tableInfo = ref({
},
// { label: "上架分类", field: "exchangeName", width: 140 },
{
label
:
"审批状态"
,
field
:
"
bizA
pproveState"
,
type
:
"tag"
,
width
:
TableColumnWidth
.
STATE
,
align
:
'center'
label
:
"审批状态"
,
field
:
"
a
pproveState"
,
type
:
"tag"
,
width
:
TableColumnWidth
.
STATE
,
align
:
'center'
},
{
label
:
'上架状态'
,
field
:
'listingStatus'
,
width
:
100
,
getName
:
(
scope
)
=>
{
...
...
@@ -138,7 +138,7 @@ const tableInfo = ref({
width
:
170
,
btns
:
(
scope
)
=>
{
const
{
row
}
=
scope
;
const
bizApproveState
=
row
.
bizA
pproveState
;
const
bizApproveState
=
row
.
a
pproveState
;
let
flowState
;
if
(
bizApproveState
==
'N'
)
{
flowState
=
1
;
...
...
src/views/data_product/productListingDetail.vue
View file @
e414f87
...
...
@@ -1766,41 +1766,41 @@ const rejectDialogBtnClick = (btn, info) => {
<
template
>
<div
class=
"container_wrap"
v-loading=
"flowDetailLoading"
>
<div
class=
"content_main"
>
<div
v-if=
"detailType == 'detail' && flowDetail.
bizA
pproveState"
:class=
"['panel_wrap', 'results_panel', flowDetail.
bizApproveState == 'Y' ? 'success' : ((flowDetail.bizApproveState == 'R' || flowDetail.bizApproveState == 'E') ? 'reject' : (flowDetail.bizA
pproveState == 'C' ? 'revoke' : 'audit'))]"
>
<div
v-if=
"detailType == 'detail' && flowDetail.
a
pproveState"
:class=
"['panel_wrap', 'results_panel', flowDetail.
approveState == 'Y' ? 'success' : ((flowDetail.approveState == 'R' || flowDetail.approveState == 'E') ? 'reject' : (flowDetail.a
pproveState == 'C' ? 'revoke' : 'audit'))]"
>
<div
class=
"panel_header"
>
<div
class=
"header_title"
v-if=
"flowDetail.
bizA
pproveState == 'Y'"
>
<div
class=
"header_title"
v-if=
"flowDetail.
a
pproveState == 'Y'"
>
<el-icon
class=
"title-icon"
>
<svg-icon
name=
"icon-success"
/>
</el-icon>
<span
class=
"title_text"
>
审批通过
</span>
</div>
<div
class=
"header_title"
v-else-if=
"flowDetail.
bizA
pproveState == 'R'"
>
<div
class=
"header_title"
v-else-if=
"flowDetail.
a
pproveState == 'R'"
>
<el-icon
class=
"title-icon"
>
<CircleCloseFilled
/>
</el-icon>
<span
class=
"title_text"
>
审批被驳回
</span>
</div>
<div
class=
"header_title"
v-else-if=
"flowDetail.
bizA
pproveState == 'E'"
>
<div
class=
"header_title"
v-else-if=
"flowDetail.
a
pproveState == 'E'"
>
<el-icon
class=
"title-icon"
>
<CircleCloseFilled
/>
</el-icon>
<span
class=
"title_text"
>
审批发起失败
</span>
</div>
<div
class=
"header_title"
v-else-if=
"flowDetail.
bizA
pproveState == 'A'"
>
<div
class=
"header_title"
v-else-if=
"flowDetail.
a
pproveState == 'A'"
>
<el-icon
class=
"title-icon"
>
<svg-icon
name=
"icon-audit"
/>
</el-icon>
<span
class=
"title_text"
>
审批中
</span>
</div>
<div
class=
"header_title"
v-else-if=
"flowDetail.
bizA
pproveState == 'C'"
>
<div
class=
"header_title"
v-else-if=
"flowDetail.
a
pproveState == 'C'"
>
<el-icon
class=
"title-icon"
>
<svg-icon
name=
"icon-revoke"
/>
</el-icon>
<span
class=
"title_text"
>
已撤销
</span>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.
bizApproveState == 'R'
"
>
<div
class=
"panel_body"
v-if=
"flowDetail.
approveState == 'R'"
style=
"padding: 0px 16px 10px;
"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
平台审批意见:
</span>
...
...
@@ -1808,7 +1808,7 @@ const rejectDialogBtnClick = (btn, info) => {
</div>
</div>
</div>
<div
class=
"panel_body"
v-if=
"flowDetail.
bizApproveState == 'E'
"
>
<div
class=
"panel_body"
v-if=
"flowDetail.
approveState == 'E'"
style=
"padding: 0px 16px 10px;
"
>
<div
class=
"results_list"
>
<div
class=
"list_item"
>
<span
class=
"item_label"
>
失败原因:
</span>
...
...
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