Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MRBR_video
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
MRBR_video
Commits
77b49669
Commit
77b49669
authored
Oct 26, 2022
by
limingzhe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: debug
parent
62a8b719
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
6 deletions
+14
-6
goodjob.mp3
assets/MRBR_video/audio/goodjob.mp3
+0
-0
goodjob.mp3.meta
assets/MRBR_video/audio/goodjob.mp3.meta
+1
-1
form.component.html
form/src/app/form/form.component.html
+8
-4
form.component.ts
form/src/app/form/form.component.ts
+5
-1
No files found.
assets/MRBR_video/audio/goodjob.mp3
View file @
77b49669
No preview for this file type
assets/MRBR_video/audio/goodjob.mp3.meta
View file @
77b49669
...
...
@@ -2,6 +2,6 @@
"ver": "2.0.1",
"uuid": "67e46ac6-e56a-486b-a947-d6f2377fc180",
"downloadMode": 0,
"duration":
0.972
,
"duration":
4.362449
,
"subMetas": {}
}
\ No newline at end of file
form/src/app/form/form.component.html
View file @
77b49669
...
...
@@ -13,10 +13,14 @@
</div>
</div>
<div>
<nz-radio-group
[
ngModel
]="
item
.
videoType
||
'
1920_1080
'"
(
ngModelChange
)="
videoTypeChange
($
event
)"
>
<label
style=
"margin-left: 20px;"
nz-radio
nzValue=
"1920_1080"
>
1920 x 1080
</label>
<label
style=
"margin-left: 20px;"
nz-radio
nzValue=
"940_600"
>
940 x 600
</label>
<div
*
ngIf=
"item.video_url"
>
<nz-radio-group
[
ngModel
]="
item
.
videoType
||
videoSizeArr
[
0
].
key
"
(
ngModelChange
)="
videoTypeChange
($
event
)"
>
<div
*
ngFor=
"let sizeData of videoSizeArr"
>
<label
style=
"margin-left: 5px;"
nz-radio
[
nzValue
]="
sizeData
.
key
"
>
{{sizeData.value}}
</label>
</div>
<!-- <label style="margin-left: 20px;" nz-radio nzValue="1920_1080">1920 x 1080</label>
<label style="margin-left: 20px;" nz-radio nzValue="940_600">940 x 600</label> -->
</nz-radio-group>
</div>
...
...
form/src/app/form/form.component.ts
View file @
77b49669
...
...
@@ -140,7 +140,11 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
{
label
:
'
问题阶段
'
,
value
:
'
ques
'
},
];
videoSizeArr
=
[
{
key
:
'
1920_1080
'
,
value
:
'
1920 x 1080
'
},
{
key
:
'
1280_720
'
,
value
:
'
1280 x 720
'
},
{
key
:
'
940_600
'
,
value
:
'
940 x 600
'
},
]
constructor
(
private
appRef
:
ApplicationRef
,
private
changeDetectorRef
:
ChangeDetectorRef
,
...
...
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