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
35acf679
authored
2026-04-08 14:40:17 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix: 报错导致未提示
1 parent
a8785d3f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/views/data_asset/productSpaceEdit.vue
src/views/data_asset/productSpaceEdit.vue
View file @
35acf67
...
...
@@ -498,13 +498,13 @@ onBeforeMount(() => {
}
getParamsList
({
dictType
:
'领域'
}).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
if
(
res
?
.
code
==
proxy
.
$passCode
)
{
domainDictList
.
value
=
res
.
data
||
[];
let
itemIndex
=
baseInfoFormItems
.
value
.
findIndex
(
item
=>
item
.
field
==
'domain'
);
let
item
=
baseInfoFormItems
.
value
[
itemIndex
];
item
&&
(
item
.
options
=
domainDictList
.
value
);
}
else
{
proxy
.
$ElMessage
.
error
(
res
.
msg
);
res
?.
msg
&&
proxy
.
$ElMessage
.
error
(
res
?
.
msg
);
}
});
...
...
@@ -534,7 +534,7 @@ onBeforeMount(() => {
})
/** 获取可选择的成员下拉列表 */
getContractTenantListExcludeSelf
().
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
if
(
res
?
.
code
==
proxy
.
$passCode
)
{
memberTenantList
.
value
=
res
.
data
||
[];
memberTableInfo
.
value
.
editInfo
.
memberGuid
.
options
=
memberTenantList
.
value
;
}
else
{
...
...
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