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
22056987
authored
2025-02-25 14:30:46 +0800
by
lxs
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'develop' into release-test
2 parents
b0e4dec8
f5d41ca9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
src/views/data_asset/registerStart.vue
src/views/data_asset/registerStart.vue
View file @
2205698
...
...
@@ -241,7 +241,7 @@ const setBaseFormItemsValue = (info) => {
item
.
inputOptions
.
visible
=
false
;
}
}
else
if
(
item
.
field
==
'updateFrequency'
)
{
item
.
default
=
info
[
item
.
field
]
||
''
;
item
.
default
=
Array
.
isArray
(
info
[
item
.
field
])
?
info
[
item
.
field
][
0
]
:
(
info
[
item
.
field
]
||
[])
;
}
else
if
(
item
.
field
==
'ownIndustry'
)
{
item
.
default
=
Array
.
isArray
(
info
[
item
.
field
])
?
info
[
item
.
field
][
0
]
:
(
info
[
item
.
field
]
||
[]);
item
.
inputOptions
.
default
=
info
[
'ownIndustryOther'
];
...
...
@@ -1721,6 +1721,7 @@ const saveDraft = () => {
}
else
if
(
!
params
.
coverageArea
)
{
params
.
coverageArea
=
params
.
coverageAreas
;
}
params
.
updateFrequency
=
[
baseFormInline
.
updateFrequency
];
let
propertyFormLine
=
porpertyInfoFormRef
.
value
.
formInline
;
Object
.
assign
(
params
,
propertyFormLine
);
delete
params
.
qualityEvaluationInstitutionGuid
;
...
...
@@ -1833,6 +1834,7 @@ const save = () => {
}
else
if
(
!
params
.
coverageArea
)
{
params
.
coverageArea
=
params
.
coverageAreas
;
}
params
.
updateFrequency
=
[
baseFormInline
.
updateFrequency
];
let
propertyFormLine
=
porpertyInfoFormRef
.
value
.
formInline
;
Object
.
assign
(
params
,
propertyFormLine
);
delete
params
.
qualityEvaluationInstitutionGuid
;
...
...
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