Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
source-trace-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenqikuai
source-trace-manage
Commits
999b1bd0
Commit
999b1bd0
authored
Aug 09, 2022
by
chenqikuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
8edf95d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
AddChildDialog.vue
...omponents/TemplateEdit/newEditTemplate/AddChildDialog.vue
+4
-4
No files found.
src/components/TemplateEdit/newEditTemplate/AddChildDialog.vue
View file @
999b1bd0
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
}"
}"
>
>
<div
class=
"c-dialog"
v-if=
"visible"
>
<div
class=
"c-dialog"
v-if=
"visible"
>
<Scroll
ref=
"scroll"
class=
"max-h-80
"
type=
"normal"
>
<Scroll
ref=
"scroll"
max-height=
"320px"
class=
"-mr-5 pr-5
"
type=
"normal"
>
<div
<div
v-for=
"item in propertyList"
v-for=
"item in propertyList"
:key=
"item.id"
:key=
"item.id"
...
@@ -65,7 +65,7 @@ import {
...
@@ -65,7 +65,7 @@ import {
syDialogInput
as
DialogInput
,
syDialogInput
as
DialogInput
,
getUuid
,
getUuid
,
syCommonDialog
as
CommonDialog
,
syCommonDialog
as
CommonDialog
,
syScroll
as
Scroll
,
syScroll
Bar
as
Scroll
,
syButton
as
Button
,
syButton
as
Button
,
}
from
"cqk-sy-ui"
;
}
from
"cqk-sy-ui"
;
import
{
onMounted
,
ref
}
from
"vue"
;
import
{
onMounted
,
ref
}
from
"vue"
;
...
@@ -85,7 +85,7 @@ interface Item {
...
@@ -85,7 +85,7 @@ interface Item {
const
propertyList
=
ref
([]
as
Item
[]);
const
propertyList
=
ref
([]
as
Item
[]);
const
isErrorShowing
=
ref
(
false
);
const
isErrorShowing
=
ref
(
false
);
const
scroll
=
ref
<
{
scrollTo
End
:
any
}
|
null
>
(
null
);
const
scroll
=
ref
<
{
scrollTo
:
any
}
|
null
>
(
null
);
const
$emit
=
defineEmits
([
"confirm"
,
"close"
]);
const
$emit
=
defineEmits
([
"confirm"
,
"close"
]);
const
props
=
defineProps
<
{
const
props
=
defineProps
<
{
...
@@ -121,7 +121,7 @@ const deleteTmpItem = (item: Item) => {
...
@@ -121,7 +121,7 @@ const deleteTmpItem = (item: Item) => {
};
};
const
scrollToEnd
=
()
=>
{
const
scrollToEnd
=
()
=>
{
scroll
.
value
?.
scrollTo
End
(
);
scroll
.
value
?.
scrollTo
(
0
,
10000
);
};
};
const
emitConfirm
=
()
=>
{
const
emitConfirm
=
()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment