Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
PKH_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yoonjunhyeon
2020-06-02 17:55:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f54ef04f9ee44c567fc81e68a04e94a5635a469e
f54ef04f
1 parent
a2447ee7
dummy data 추가
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
10 deletions
web/frontend/src/views/Home.vue
web/frontend/src/views/Home.vue
View file @
f54ef04
...
...
@@ -59,7 +59,7 @@
style="font-size: 24px; text-align: center; font-weight: 400; color: #5a5a5a;"
>How To start this service</div>
<div
style="font-size: 20px; font-weight: 300; color: #888; text-align: center; margin-bottom: 5px"
style="font-size: 20px; font-weight: 300; color: #888; text-align: center; margin-bottom:
1
5px"
>
<div>Set up Threshold of</div>
<div>Recommended Youtube link</div>
...
...
@@ -103,16 +103,16 @@
style="margin-left: 5px; margin-top: -18px; background-color: #fff; width: 110px; text-align: center;font-size: 14px; color: #5a5a5a; font-weight: 500"
>Generated Tags</div>
<v-chip-group column>
<v-chip color="secondary" v-for="(tag, index) in generatedTag" :key="index">{{ tag
}}</v-chip>
<v-chip color="secondary" v-for="(tag, index) in generatedTag" :key="index">{{ tag
.name }} : {{tag.accuracy
}}</v-chip>
</v-chip-group>
</v-card>
<v-card outlined class="pa-
2
mx-5 mt-8" elevation="0" min-height="67">
<v-card outlined class="pa-
3
mx-5 mt-8" elevation="0" min-height="67">
<div
style="margin-left: 5px; margin-top: -
18
px; background-color: #fff; width: 140px; text-align: center;font-size: 14px; color: #5a5a5a; font-weight: 500"
style="margin-left: 5px; margin-top: -
22px; margin-bottom: 5
px; background-color: #fff; width: 140px; text-align: center;font-size: 14px; color: #5a5a5a; font-weight: 500"
>Related Youtube Link</div>
<v-flex v-for="(url) in YoutubeUrl" :key="url.id">
<v-flex
style="margin-bottom: 2px"
v-for="(url) in YoutubeUrl" :key="url.id">
<div>
<a :href="url">{{url}}</a>
<a
style="color: #343a40; font-size: 16px; font-weight: 500"
:href="url">{{url}}</a>
</div>
</v-flex>
</v-card>
...
...
@@ -136,8 +136,20 @@ export default {
data() {
return {
videoFile: '',
YoutubeUrl: [],
generatedTag: [],
YoutubeUrl: [
'https://www.youtube.com/watch?v=8KrzgB1NWKI',
'https://www.youtube.com/watch?v=YfI7iQrqKGg',
'https://www.youtube.com/watch?v=AoO9vUCqgsw',
'https://www.youtube.com/watch?v=fRYDHLseGLg',
'https://www.youtube.com/watch?v=WOMUrZ9owhA',
],
generatedTag: [
{ name: 'mobile-phone', accuracy: '35%' },
{ name: 'smartphone', accuracy: '33%' },
{ name: 'concert', accuracy: '14%' },
{ name: 'car', accuracy: '11%' },
{ name: 'dance', accuracy: '5%' },
],
threshold: 5,
successDialog: false,
errorDialog: false,
...
...
@@ -145,8 +157,8 @@ export default {
};
},
created() {
this.YoutubeUrl = [];
this.generatedTag = [];
//
this.YoutubeUrl = [];
//
this.generatedTag = [];
},
methods: {
loadVideoInfo() {},
...
...
Please
register
or
login
to post a comment