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
7f12e518
authored
2025-07-11 15:18:49 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修复标准编辑逻辑
1 parent
c8acb747
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
src/views/data_meta/components/standardDialog.vue
src/views/data_meta/components/standardDialog.vue
View file @
7f12e51
...
...
@@ -271,7 +271,7 @@ watch(
()
=>
treeCurrentNode
,
(
currentNode
:
any
)
=>
{
console
.
log
(
'currentNode'
,
currentNode
.
value
)
let
{
level
,
isHaveData
}
=
currentNode
.
value
let
{
level
,
isHaveData
,
isChildHaveData
}
=
currentNode
.
value
fieldsTableShow
.
value
=
level
?
true
:
false
fieldsDisabled
.
value
=
false
if
(
!
level
)
{
...
...
@@ -293,7 +293,10 @@ watch(
form
.
value
.
fieldRQVOS
=
[{...
tableFormTpl
}]
fieldsDisabled
.
value
=
false
}
if
(
level
>=
2
)
{
if
(
level
==
2
)
{
fieldsDisabled
.
value
=
isChildHaveData
===
'Y'
?
true
:
false
}
if
(
level
>=
3
)
{
fieldsDisabled
.
value
=
true
}
}
...
...
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