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
97692c16
authored
2025-01-15 10:28:58 +0800
by
xukangle
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix
1 parent
e599f3a1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
src/views/data_asset/qualityEvaluate.vue
src/views/data_asset/registerCatalogCreate.vue
src/views/data_asset/registerCatalogManagement.vue
src/views/data_asset/qualityEvaluate.vue
View file @
97692c1
...
...
@@ -44,7 +44,7 @@ const tableFields = ref([
{
label
:
"资产名称"
,
field
:
"daName"
,
width
:
160
,
align
:
"left"
},
{
label
:
"登记时间"
,
field
:
"registerTime"
,
width
:
120
},
// { label: "企业名称", field: "tenantName", width: 240, align: "left" },
{
label
:
"
发证主体
"
,
field
:
"issuingEntityName"
,
width
:
250
,
align
:
"left"
},
{
label
:
"
评估机构
"
,
field
:
"issuingEntityName"
,
width
:
250
,
align
:
"left"
},
{
label
:
"状态"
,
field
:
"approveState"
,
type
:
"tag"
,
width
:
96
,
align
:
'center'
},
]);
...
...
@@ -683,7 +683,7 @@ const rejectDialogBtnClick = (btn, info) => {
<Table
:tableInfo=
"tableInfo"
@
tableBtnClick=
"tableBtnClick"
@
tablePageChange=
"tablePageChange"
/>
</div>
<Dialog
:dialogInfo=
"dialogInfo"
@
btnClick=
"dialogBtnClick"
/>
<Dialog
:dialogInfo=
"passDialogInfo"
@
btnClick=
"passDialogBtnClick"
@
inputChange=
passDialogInputChange
/>
<Dialog
:dialogInfo=
"passDialogInfo"
@
btnClick=
"passDialogBtnClick"
@
inputChange=
passDialogInputChange
/>
<Dialog
:dialogInfo=
"rejectDialogInfo"
@
btnClick=
"rejectDialogBtnClick"
/>
</div>
</
template
>
...
...
src/views/data_asset/registerCatalogCreate.vue
View file @
97692c1
...
...
@@ -134,8 +134,9 @@ const baseInfoFormItems = ref([
placeholder
:
'请输入'
,
field
:
'rightMain'
,
maxlength
:
20
,
default
:
''
,
required
:
true
default
:
userStore
.
userName
,
required
:
true
,
disabled
:
true
},
{
label
:
'所属主题'
,
...
...
src/views/data_asset/registerCatalogManagement.vue
View file @
97692c1
...
...
@@ -95,7 +95,7 @@ const searchItemList = ref([
{
type
:
"select"
,
label
:
""
,
field
:
"
isRegister
"
,
field
:
"
registerState
"
,
default
:
""
,
placeholder
:
"登记状态"
,
clearable
:
true
,
...
...
@@ -117,6 +117,8 @@ const pageInfo = ref({
damName
:
""
,
damType
:
""
,
tenantGuid
:
""
,
dataSources
:
""
,
registerState
:
""
,
subjectDomain
:
[],
});
...
...
@@ -189,7 +191,9 @@ const getTableData = () => {
damName
:
pageInfo
.
value
.
damName
,
damType
:
pageInfo
.
value
.
damType
,
subjectDomain
:
pageInfo
.
value
.
subjectDomain
,
tenantGuid
:
pageInfo
.
value
.
tenantGuid
tenantGuid
:
pageInfo
.
value
.
tenantGuid
,
dataSources
:
pageInfo
.
value
.
dataSources
,
registerState
:
pageInfo
.
value
.
registerState
,
}).
then
((
res
:
any
)
=>
{
listDataLoading
.
value
=
false
;
if
(
res
.
code
==
proxy
.
$passCode
)
{
...
...
@@ -212,11 +216,15 @@ const toSearch = (val: any, clear: boolean = false) => {
pageInfo
.
value
.
damType
=
""
;
pageInfo
.
value
.
subjectDomain
=
[];
pageInfo
.
value
.
tenantGuid
=
""
;
pageInfo
.
value
.
registerState
=
""
;
pageInfo
.
value
.
dataSources
=
""
;
}
else
{
pageInfo
.
value
.
damName
=
val
.
damName
;
pageInfo
.
value
.
damType
=
val
.
damType
;
pageInfo
.
value
.
subjectDomain
=
val
.
subjectDomain
;
pageInfo
.
value
.
tenantGuid
=
val
.
tenantGuid
;
pageInfo
.
value
.
registerState
=
val
.
registerState
;
pageInfo
.
value
.
dataSources
=
val
.
dataSources
;
}
getTableData
();
};
...
...
@@ -317,7 +325,7 @@ const handleCreate = () => {
<div
class=
"type"
>
{{
item
.
subjectDomainName
||
item
.
subjectDomain
}}
</div>
<div
class=
"type"
>
{{
item
.
damTypeName
||
'--'
}}
</div>
<div
class=
"type"
>
{{
item
.
isRegister
==
'Y'
?
'已登记'
:
'未登记'
}}
</div>
<div
class=
"type"
>
{{
item
.
foundMode
?
(
item
.
foundMode
===
'1'
?
'自建'
:
'加工交付'
)
:
'--'
}}
</div>
<div
class=
"type"
>
{{
item
.
foundMode
?
(
item
.
foundMode
===
1
?
'自建'
:
'加工交付'
)
:
'--'
}}
</div>
</div>
<div
class=
"desc"
>
{{
item
.
propertyDescription
}}
</div>
<el-popover
v-model=
"cardBtnVisible"
placement=
"bottom"
width=
"96"
trigger=
"click"
...
...
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