Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
LST02
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
LST02
Commits
ec52fa0c
Commit
ec52fa0c
authored
4 years ago
by
李维
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix
parent
56ab2271
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
form.component.ts
src/app/form/form.component.ts
+9
-5
No files found.
src/app/form/form.component.ts
View file @
ec52fa0c
...
...
@@ -25,7 +25,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this
.
item
=
{};
// 获取存储的数据
(
<
any
>
window
).
courseware
.
getData
((
data
)
=>
{
this
.
item
.
questionType
=
'
text
'
;
this
.
item
.
answerType
=
'
text
'
;
this
.
item
.
answerArr
=
[];
if
(
data
)
{
this
.
item
=
data
;
}
...
...
@@ -33,10 +35,7 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this
.
init
();
this
.
refresh
();
setTimeout
(()
=>
{
this
.
changeDetectorRef
.
markForCheck
();
this
.
changeDetectorRef
.
detectChanges
();
},
200
);
},
this
.
saveKey
);
}
...
...
@@ -69,6 +68,11 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this
.
item
.
answerArr
=
[]
}
setTimeout
(()
=>
{
this
.
changeDetectorRef
.
markForCheck
();
this
.
changeDetectorRef
.
detectChanges
();
},
200
);
}
...
...
This diff is collapsed.
Click to expand it.
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