Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
K
kiaisoft_tuananh_nuxt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
TTS Tran Viet Anh
kiaisoft_tuananh_nuxt
Commits
306441cf
Commit
306441cf
authored
Mar 16, 2023
by
catea792
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add close button to modal
parent
bd47df80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
8 deletions
+21
-8
DetailModal.vue
components/DetailModal.vue
+8
-0
Header.vue
components/user/Header.vue
+13
-8
No files found.
components/DetailModal.vue
View file @
306441cf
...
@@ -22,9 +22,14 @@
...
@@ -22,9 +22,14 @@
</v-carousel>
</v-carousel>
</v-col>
</v-col>
<v-col>
<v-col>
<v-row
class=
"flex-row align-center justify-space-between mt-2"
>
<v-card-title
v-model=
"item.name"
class=
"modal-title"
style=
"margin-left:-30px"
>
<v-card-title
v-model=
"item.name"
class=
"modal-title"
style=
"margin-left:-30px"
>
{{
name
}}
{{
name
}}
</v-card-title>
</v-card-title>
<v-btn
icon
@
click=
"$emit('close')"
style=
"background-color:red"
>
<v-icon
color=
"white"
>
mdi-close
</v-icon>
</v-btn>
</v-row>
<v-row
class=
"flex-row align-center"
>
<v-row
class=
"flex-row align-center"
>
<h3
class=
"mr-4"
>
<h3
class=
"mr-4"
>
Price:
Price:
...
@@ -183,6 +188,9 @@ export default {
...
@@ -183,6 +188,9 @@ export default {
}
}
},
},
methods
:
{
methods
:
{
close
()
{
this
.
$props
.
status
=
false
},
closeDialog
()
{
closeDialog
()
{
this
.
$props
.
status
=
false
this
.
$props
.
status
=
false
},
},
...
...
components/user/Header.vue
View file @
306441cf
...
@@ -136,11 +136,11 @@
...
@@ -136,11 +136,11 @@
:key=
"item.id"
:key=
"item.id"
link
link
>
>
<v-list-item-avatar
tile
align-center
min-height=
"80px"
cover
>
<v-list-item-avatar
class=
"item-avatar"
tile
align-center
min-height=
"80px"
cover
>
<v-img
:src=
"item.product.images[0]"
/>
<v-img
:src=
"item.product.images[0]"
/>
</v-list-item-avatar>
</v-list-item-avatar>
<v-list-item-content
class=
"list-item-card"
>
<v-list-item-content
class=
"list-item-card"
>
<v-list-item-title>
{{
item
.
product
.
name
}}
</v-list-item-title>
<v-list-item-title
class=
"font-weight-bold"
>
{{
item
.
product
.
name
}}
</v-list-item-title>
<v-list-item-subtitle>
{{
item
.
quantity
+
"
x
"
+
item
.
product
.
price
+
"
$
"
}}
</v-list-item-subtitle>
<v-list-item-subtitle>
{{
item
.
quantity
+
"
x
"
+
item
.
product
.
price
+
"
$
"
}}
</v-list-item-subtitle>
</v-list-item-content>
</v-list-item-content>
...
@@ -201,15 +201,15 @@
...
@@ -201,15 +201,15 @@
<v-list
dense
three-line
>
<v-list
dense
three-line
>
<v-list-item
v-for=
"item in wishlist"
:key=
"item.name"
link
>
<v-list-item
v-for=
"item in wishlist"
:key=
"item.name"
link
>
<v-list-item-avatar>
<v-list-item-avatar
tile
class=
"align-center item-avatar"
>
<v-img
:src=
"item.product.images[0]"
/>
<v-img
tile
:src=
"item.product.images[0]"
/>
</v-list-item-avatar>
</v-list-item-avatar>
<v-list-item-content>
<v-list-item-content
class=
"list-item-card"
>
<v-list-item-title>
{{
item
.
product
.
name
}}
</v-list-item-title>
<v-list-item-title
class=
"font-weight-bold"
>
{{
item
.
product
.
name
}}
</v-list-item-title>
<v-list-item-subtitle>
{{
item
.
product
.
price
}}
</v-list-item-subtitle>
<v-list-item-subtitle>
{{
item
.
product
.
price
+
'
$
'
}}
</v-list-item-subtitle>
</v-list-item-content>
</v-list-item-content>
<v-list-item-action>
<v-list-item-action
class=
"align-self-center"
>
<v-btn
icon
@
click=
"removeWishlist(item, index)"
>
<v-btn
icon
@
click=
"removeWishlist(item, index)"
>
<v-icon
color=
"grey lighten-1"
>
<v-icon
color=
"grey lighten-1"
>
mdi-close-circle-outline
mdi-close-circle-outline
...
@@ -539,4 +539,9 @@ b {
...
@@ -539,4 +539,9 @@ b {
.list-item
::-webkit-scrollbar
{
.list-item
::-webkit-scrollbar
{
display
:
none
;
display
:
none
;
}
}
.item-avatar
{
height
:
70px
!important
;
width
:
70px
!important
;
min-width
:
70px
;
}
</
style
>
</
style
>
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