Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
JJ28
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
JJ28
Commits
2b4d5e77
Commit
2b4d5e77
authored
Aug 08, 2024
by
limingzhe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: debug
parent
83aff735
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
form.component.html
form/src/app/form/form.component.html
+7
-0
form.component.ts
form/src/app/form/form.component.ts
+0
-1
No files found.
form/src/app/form/form.component.html
View file @
2b4d5e77
...
@@ -5,6 +5,13 @@
...
@@ -5,6 +5,13 @@
<input
type=
"text"
nz-input
[(
ngModel
)]="
item
.
title
"
(
blur
)="
save
()"
style=
" width: 350px;"
>
<input
type=
"text"
nz-input
[(
ngModel
)]="
item
.
title
"
(
blur
)="
save
()"
style=
" width: 350px;"
>
</div>
</div>
<div
style=
"margin: 30px; display: flex; align-items: center;"
>
<h3
style=
""
>
音频:
</h3>
<app-audio-recorder
[
audioUrl
]="
item
.
audio_url
"
(
audioUploaded
)="
onItemAudioUploadSuccess
($
event
,
item
,
'
audio_url
')"
>
</app-audio-recorder>
</div>
<div
*
ngIf=
"item && item.quesArr"
style=
"border: 2px #ccc solid; border-radius: 15px; width: 1000px; margin: 30px"
>
<div
*
ngIf=
"item && item.quesArr"
style=
"border: 2px #ccc solid; border-radius: 15px; width: 1000px; margin: 30px"
>
<div
*
ngFor=
"let ques of item.quesArr; let i = index"
<div
*
ngFor=
"let ques of item.quesArr; let i = index"
...
...
form/src/app/form/form.component.ts
View file @
2b4d5e77
...
@@ -506,7 +506,6 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
...
@@ -506,7 +506,6 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
this
.
initItem
();
this
.
initItem
();
console
.
log
(
"
this.item:
"
,
JSON
.
stringify
(
this
.
item
));
console
.
log
(
"
this.item:
"
,
JSON
.
stringify
(
this
.
item
));
this
.
init
();
this
.
init
();
...
...
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