Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
A
ABC_Hotel
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
Đinh Quang Vinh
ABC_Hotel
Commits
7afc0148
Commit
7afc0148
authored
Jun 13, 2023
by
vinh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
addc6689
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
1964 additions
and
418 deletions
+1964
-418
package-lock.json
package-lock.json
+16
-0
package.json
package.json
+1
-0
App.vue
src/App.vue
+72
-46
HotelHeader.vue
src/components/HotelHeader.vue
+68
-9
NavbarHotel.vue
src/components/NavbarHotel.vue
+122
-0
main.js
src/main.js
+1
-0
index.js
src/router/index.js
+1
-2
BookingView.vue
src/views/BookingView.vue
+179
-23
CheckinView.vue
src/views/CheckinView.vue
+194
-27
CreateBookingView.vue
src/views/CreateBookingView.vue
+177
-42
DashboardView.vue
src/views/DashboardView.vue
+237
-27
EmployeeView.vue
src/views/EmployeeView.vue
+112
-17
LoginView.vue
src/views/LoginView.vue
+81
-20
ModifyView.vue
src/views/ModifyView.vue
+403
-173
RoomView.vue
src/views/RoomView.vue
+137
-24
UserListView.vue
src/views/UserListView.vue
+163
-8
No files found.
package-lock.json
View file @
7afc0148
...
...
@@ -10,6 +10,7 @@
"dependencies"
:
{
"axios"
:
"^1.4.0"
,
"bootstrap"
:
"^5.2.3"
,
"bootstrap-icons"
:
"^1.10.5"
,
"bootstrap-vue"
:
"^2.23.1"
,
"core-js"
:
"^3.8.3"
,
"vue"
:
"^3.2.47"
,
...
...
@@ -3822,6 +3823,21 @@
"@popperjs/core"
:
"^2.11.6"
}
},
"node_modules/bootstrap-icons"
:
{
"version"
:
"1.10.5"
,
"resolved"
:
"https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.10.5.tgz"
,
"integrity"
:
"sha512-oSX26F37V7QV7NCE53PPEL45d7EGXmBgHG3pDpZvcRaKVzWMqIRL9wcqJUyEha1esFtM3NJzvmxFXDxjJYD0jQ=="
,
"funding"
:
[
{
"type"
:
"github"
,
"url"
:
"https://github.com/sponsors/twbs"
},
{
"type"
:
"opencollective"
,
"url"
:
"https://opencollective.com/bootstrap"
}
]
},
"node_modules/bootstrap-vue"
:
{
"version"
:
"2.23.1"
,
"resolved"
:
"https://registry.npmjs.org/bootstrap-vue/-/bootstrap-vue-2.23.1.tgz"
,
...
...
package.json
View file @
7afc0148
...
...
@@ -10,6 +10,7 @@
"dependencies"
:
{
"
axios
"
:
"
^1.4.0
"
,
"
bootstrap
"
:
"
^5.2.3
"
,
"
bootstrap-icons
"
:
"
^1.10.5
"
,
"
bootstrap-vue
"
:
"
^2.23.1
"
,
"
core-js
"
:
"
^3.8.3
"
,
"
vue
"
:
"
^3.2.47
"
,
...
...
src/App.vue
View file @
7afc0148
<
template
>
<div
class=
"d-flex flex-column min-vh-100"
>
<div>
<header
class=
"p-3 bg-dark text-white"
>
<div
class=
"container"
>
<div
class=
"d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"
>
<h1>
ABC Hotel
</h1>
<ul
class=
"nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0"
>
<li>
<router-link
to=
"/booking"
class=
"nav-link px-2 text-secondary"
>
View booking
</router-link>
</li>
<li>
<router-link
to=
"/checkin"
class=
"nav-link px-2 text-secondary"
>
View checkin
</router-link>
</li>
<li>
<router-link
to=
"/employee"
class=
"nav-link px-2 text-secondary"
>
View employee
</router-link>
</li>
<li>
<router-link
to=
"/room"
class=
"nav-link px-2 text-secondary"
>
View room
</router-link>
</li>
<li>
<router-link
to=
"/"
class=
"nav-link px-2 text-secondary"
>
Dashboard
</router-link>
</li>
<li>
<router-link
to=
"/user-list"
class=
"nav-link px-2 text-secondary"
>
User list
</router-link>
</li>
<li
class=
"text-end"
>
<button
@
click=
"$store.commit('logout')"
class=
"btn btn-danger"
>
Logout
</button>
</li>
</ul>
</div>
<div
class=
"text-end"
>
<router-link
to=
"/login"
class=
"btn btn-outline-light me-2"
>
Login
</router-link>
<router-link
to=
"/register"
class=
"btn btn-warning"
>
Register
</router-link>
</div>
<div
class=
"layout"
>
<HotelHeader
/>
<div
class=
"body"
>
<div
v-if=
"shouldDisplaySidebar"
>
<div
class=
"sidebar"
id=
"sidebar"
v-if=
"width > 769"
>
<NavbarHotel
/>
</div>
</header>
<router-view
/>
</div>
<div
class=
"mt-auto"
>
<HotelFooter></HotelFooter>
</div>
<div
class=
"view"
>
<router-view
/>
</div>
</div>
</div>
</
template
>
<
script
>
import
HotelFooter
from
'
./components/HotelFooter.vue
'
import
NavbarHotel
from
'
./components/NavbarHotel.vue
'
import
HotelHeader
from
'
./components/HotelHeader.vue
'
import
{
ref
}
from
'
vue
'
export
default
{
name
:
'
App
'
,
components
:
{
HotelFooter
}
HotelHeader
,
NavbarHotel
},
setup
()
{
const
width
=
ref
(
window
.
innerWidth
)
return
{
width
,
}
},
computed
:
{
shouldDisplaySidebar
()
{
const
currentView
=
this
.
$route
.
path
;
return
currentView
!==
'
/login
'
;
},
},
}
</
script
>
<
style
>
.vh
{
min-height
:
100vh
;
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.body
{
display
:
flex
;
}
.layout
{
height
:
100vh
;
display
:
flex
;
flex-direction
:
column
;
}
.footer
{
margin-top
:
auto
}
.sidebar
{
height
:
100vh
;
}
.view
{
width
:
100%
;
height
:
100vh
;
}
}
@media
(
max-width
:
768px
)
{
.layout
{
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
width
:
100%
;
}
.body
{
display
:
flex
;
flex-direction
:
column
;
}
}
</
style
>
src/components/HotelHeader.vue
View file @
7afc0148
<
template
>
<div>
<h1>
ABC Hotel
</h1>
<
button>
View booking
</button
>
<button>
View checkin
</button
>
<button>
View employee
</button
>
<button>
View room
</button
>
<
button>
View dashboard
</button
>
<
button>
Logout
</button
>
<div
class=
"header"
>
<h1
class=
"hotel-name"
>
ABC Hotel
</h1>
<
div
v-if=
"width
<
768
"
>
<i
class=
"bi bi-list"
@
click=
"showMenu()"
></i
>
<div
class=
"sidebar"
id=
"sidebar"
>
<NavbarHotel
/
>
<
/div
>
<
/div
>
</div>
</
template
>
<
script
>
import
{
ref
}
from
'
vue
'
import
NavbarHotel
from
'
./NavbarHotel.vue
'
export
default
{
name
:
'
HotelHeader
'
,
components
:
{
NavbarHotel
},
setup
()
{
const
width
=
ref
(
window
.
innerWidth
)
const
showMenu
=
()
=>
{
const
sidebar
=
document
.
getElementById
(
'
sidebar
'
)
console
.
log
(
'
hello
'
)
if
(
sidebar
.
style
.
display
===
'
none
'
)
{
sidebar
.
style
.
display
=
'
block
'
}
else
{
sidebar
.
style
.
display
=
'
none
'
}
}
return
{
width
,
showMenu
}
}
}
</
script
>
<
style
></
style
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.header
{
width
:
100%
;
background-color
:
rgb
(
255
,
255
,
255
);
padding
:
10px
;
}
.hotel-name
{
font-size
:
30px
;
}
}
@media
(
max-width
:
768px
)
{
.header
{
width
:
100%
;
background-color
:
rgb
(
255
,
255
,
255
);
padding
:
10px
;
display
:
flex
;
justify-content
:
space-between
;
}
.hotel-name
{
font-size
:
20px
;
}
.sidebar
{
display
:
none
;
position
:
fixed
;
right
:
0
;
margin-top
:
20px
;
}
}
</
style
>
src/components/NavbarHotel.vue
0 → 100644
View file @
7afc0148
<
template
>
<div
class=
"body"
>
<div
class=
"nav"
>
<div
class=
"nav-content"
:class=
"
{ 'my-class': currentView == '/booking' }">
<i
class=
"bi bi-book-fill icon"
>
</i>
<router-link
to=
"/booking"
class=
"router-link"
>
View booking
</router-link>
</div>
<div
class=
"nav-content"
:class=
"
{ 'active-route': currentView == '/checkin' }">
<i
class=
"bi bi-bookmark-check-fill icon"
></i>
<router-link
to=
"/checkin"
class=
"router-link"
>
View checkin
</router-link>
</div>
<div
class=
"nav-content"
:class=
"
{ 'my-class': currentView == '/employee' }">
<i
class=
"bi bi-people-fill icon"
></i>
<router-link
to=
"/employee"
class=
"router-link"
>
View employee
</router-link>
</div>
<div
class=
"nav-content"
:class=
"
{ 'my-class': currentView == '/room' }">
<i
class=
"bi bi-bank2 icon"
></i>
<router-link
to=
"/room"
class=
"router-link"
>
View room
</router-link>
</div>
<div
class=
"nav-content"
:class=
"
{ 'my-class': currentView == '/' }">
<i
class=
"bi bi-clipboard-fill icon"
></i>
<router-link
to=
"/"
class=
"router-link"
>
Dashboard
</router-link>
</div>
<div
class=
"nav-content"
:class=
"
{ 'my-class': currentView == '/user-list' }">
<i
class=
"bi bi-person-badge-fill icon"
></i>
<router-link
to=
"/user-list"
class=
"router-link"
>
User list
</router-link>
</div>
</div>
<div
class=
"logout nav-content"
>
<i
class=
"bi bi-box-arrow-right icon"
@
click=
"logout"
></i>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
'
NavbarHotel
'
,
//logout function
methods
:
{
logout
()
{
localStorage
.
removeItem
(
'
token
'
);
localStorage
.
removeItem
(
'
isLoggedIn
'
);
this
.
$router
.
push
(
'
/login
'
);
}
},
//get current route
computed
:
{
currentView
()
{
return
this
.
$route
.
path
;
}
}
}
</
script
>
<
style
scoped
>
.title
{
text-align
:
center
;
}
.active-route
{
background-color
:
#c0bfbf
;
color
:
#000
;
font-size
:
15px
;
}
.icon
{
color
:
rgb
(
213
,
213
,
213
);
font-size
:
25px
;
}
.nav
{
display
:
flex
;
flex-direction
:
column
;
background-color
:
rgb
(
248
,
248
,
248
);
color
:
#f0f0f0
;
height
:
100%
;
gap
:
30px
;
width
:
200px
;
}
.nav-content
{
padding
:
10px
;
padding-left
:
20px
;
font-size
:
15px
;
display
:
flex
;
gap
:
15px
;
}
.nav-content
:hover
{
background-color
:
#c0bfbf
;
color
:
#000
;
font-size
:
15px
;
}
.body
{
height
:
100%
;
width
:
2
;
display
:
flex
;
flex-direction
:
column
;
}
.router-link
{
text-decoration
:
none
;
color
:
rgb
(
35
,
35
,
35
);
font-size
:
15px
;
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
}
.logout
{
background-color
:
rgb
(
217
,
84
,
84
);
cursor
:
pointer
;
}
.logout
:hover
{
background-color
:
rgb
(
247
,
108
,
105
);
color
:
#fff
;
}
</
style
>
src/main.js
View file @
7afc0148
...
...
@@ -2,6 +2,7 @@ import { createApp} from 'vue'
import
App
from
'
./App.vue
'
import
router
from
'
./router
'
import
'
bootstrap/dist/css/bootstrap.css
'
;
import
'
bootstrap-icons/font/bootstrap-icons.css
'
import
axios
from
'
axios
'
import
storeConfig
from
'
./store
'
;
import
{
createStore
}
from
'
vuex
'
;
...
...
src/router/index.js
View file @
7afc0148
...
...
@@ -7,7 +7,6 @@ import CheckinView from '../views/CheckinView.vue'
import
CreateBookingView
from
'
../views/CreateBookingView.vue
'
import
ModifyView
from
'
../views/ModifyView.vue
'
import
LoginView
from
'
../views/LoginView.vue
'
import
store
from
'
../store
'
import
register
from
'
../views/RegisterView.vue
'
import
userList
from
'
../views/UserListView.vue
'
...
...
@@ -68,7 +67,7 @@ const routes = [
routes
.
forEach
(
route
=>
{
route
.
beforeEnter
=
(
to
,
from
,
next
)
=>
{
const
isAuthenticated
=
store
.
state
.
isLoggedIn
;
const
isAuthenticated
=
localStorage
.
getItem
(
'
isLoggedIn
'
)
;
if
(
to
.
path
!==
'
/login
'
&&
to
.
path
!==
'
/register
'
&&
!
isAuthenticated
)
{
next
(
'
/login
'
);
}
else
{
...
...
src/views/BookingView.vue
View file @
7afc0148
<
template
>
<div>
<div>
<h1
class=
""
>
Booking
</h1>
<div
class=
"
position-relative top-0
"
>
<router-link
to=
"/create-booking"
>
<button
class=
"btn btn-outline-info top-0 end-0 position-absolute
"
>
Create booking
</button>
</router-link>
</div>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"
title
"
>
Booking
</h1>
<div
class=
"
create-button-box
"
>
<router-link
to=
"/create-booking"
>
<button
class=
"create-button
"
>
Create booking
</button>
</router-link>
</div>
<br
/>
</div>
<table
class=
"table table-striped"
>
<thead>
<tr>
<th
scope=
"col"
>
Booking ID
</th>
<th
scope=
"col"
>
Guest Name
</th>
<th
scope=
"col"
>
Guest Number
</th>
<th
scope=
"col"
>
Room ID
</th>
<th
scope=
"col"
>
Checked
</th>
<th
scope=
"col"
colspan=
"2"
>
Actions
</th>
<div
class=
"table-box"
>
<table
class=
"table"
>
<tr
class=
""
>
<th>
Booking ID
</th>
<th>
Guest Name
</th>
<th>
Guest Number
</th>
<th>
Room ID
</th>
<th>
Checked
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"booking in bookings"
:key=
"booking.id"
>
<td>
{{
booking
.
id
}}
</td>
<td>
{{
booking
.
guest_name
}}
</td>
...
...
@@ -28,18 +25,18 @@
<td>
{{
booking
.
room_id
}}
</td>
<td>
{{
booking
.
checked
}}
</td>
<td>
<button
@
click=
"checkin(booking.id)"
class=
"
btn btn-success
"
>
<button
@
click=
"checkin(booking.id)"
class=
"
checkin-button
"
>
<i
class=
"bi bi-check-circle"
></i>
Checkin
</button>
</td>
<td>
<button
@
click=
"destroy(booking.id)"
class=
"
btn btn-danger
"
>
<button
@
click=
"destroy(booking.id)"
class=
"
delete-button
"
>
<i
class=
"bi bi-trash"
></i>
Delete
</button>
</td>
</tr>
</t
body
>
</
table
>
</t
able
>
</
div
>
</div>
</
template
>
...
...
@@ -48,6 +45,7 @@ import { defineComponent, ref } from "vue";
import
axios
from
'
../config
'
;
export
default
defineComponent
({
name
:
"
BookingView
"
,
setup
()
{
...
...
@@ -116,3 +114,161 @@ export default defineComponent({
},
});
</
script
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
15px
;
padding
:
5px
;
}
.checkin-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-radius
:
20px
;
}
.checkin-button
:hover
{
background
:
#3baea0
;
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
color
:
white
;
}
.delete-button
:hover
{
background
:
#ff5757
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.create-button-box
{
order
:
2
;
}
.create-button
{
border
:
none
;
border-radius
:
30px
;
padding
:
10px
;
background
:
#ff347f
;
color
:
white
}
.create-button
:hover
{
background
:
#c9356c
;
color
:
white
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
th
{
padding
:
10px
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
.checkin-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-radius
:
20px
;
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
color
:
white
;
}
.create-button
{
border
:
none
;
border-radius
:
30px
;
padding
:
10px
;
background
:
#ff347f
;
color
:
white
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.create-button-box
{
order
:
1
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
}
</
style
>
src/views/CheckinView.vue
View file @
7afc0148
<
template
>
<div>
<div>
<h1>
Checkin
</h1><br>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"title"
>
Checkin
</h1><br>
</div>
<table
class=
"table table-striped"
>
<thead>
<tr>
<th
scope=
"col"
>
Checkin ID
</th>
<th
scope=
"col"
>
Booking ID
</th>
<th
scope=
"col"
>
Employee ID
</th>
<th
scope=
"col"
>
Checkin Time
</th>
<th
scope=
"col"
>
Checkout Time
</th>
<th
scope=
"col"
>
Fee
</th>
<th
scope=
"col"
>
Total Price
</th>
<th
scope=
"col"
colspan=
"3"
>
Actions
</th>
<div
class=
"table-box"
>
<table
class=
"table"
>
<tr
class=
"table-column"
>
<th>
Checkin ID
</th>
<th>
Booking ID
</th>
<th>
Employee ID
</th>
<th>
Checkin Time
</th>
<th>
Checkout Time
</th>
<th>
Fee
</th>
<th>
Total Price
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"checkin in checkins"
:key=
"checkin.id"
>
<td>
{{
checkin
.
id
}}
</td>
<td>
{{
checkin
.
booking_id
}}
</td>
...
...
@@ -26,28 +23,26 @@
<td>
{{
checkin
.
fee
}}
</td>
<td>
{{
checkin
.
total_price
}}
</td>
<td>
<button
@
click=
"checkout(checkin.id, checkin.booking_id)"
class=
"
btn btn-success
"
>
<button
@
click=
"checkout(checkin.id, checkin.booking_id)"
class=
"
checkout-button
"
>
<i
class=
"bi bi-box-arrow-right"
></i>
Checkout
</button>
</td>
<td>
<button
@
click=
"destroy(checkin.id)"
class=
"
btn btn-danger
"
>
<button
@
click=
"destroy(checkin.id)"
class=
"
delete-button
"
>
<i
class=
"bi bi-trash"
></i>
Delete
</button>
</td>
<td>
<form
@
submit.prevent=
"addFee(checkin.id)"
>
<div
class=
"input-group"
>
<input
type=
"text"
class=
"form-control"
v-model=
"checkin.id"
name=
"fee"
id=
"fee"
placeholder=
"Fee"
>
<button
type=
"submit"
class=
"btn btn-secondary"
>
<i
class=
"bi bi-currency-dollar"
></i>
Submit
</button>
</div>
<form
@
submit.prevent=
"addFee(checkin.id)"
class=
"fee-box"
>
<input
type=
"text"
v-model=
"checkin.id"
name=
"fee"
id=
"fee"
placeholder=
"Fee"
class=
"fee"
>
<button
type=
"submit"
class=
"submit-button"
>
<i
class=
"bi bi-currency-dollar"
></i>
Submit
</button>
</form>
</td>
</tr>
</t
body
>
</
table
>
</t
able
>
</
div
>
</div>
</
template
>
...
...
@@ -149,3 +144,175 @@ export default defineComponent({
}
})
</
script
>
<
style
scoped
>
@media
(
min-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
}
th
{
padding
:
10px
}
.checkout-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#8bffff
;
color
:
white
}
.checkout-button
:hover
{
background
:
#82acff
;
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
color
:
white
;
}
.delete-button
:hover
{
background
:
#ff5757
;
}
.fee-box
{
display
:
flex
;
}
.fee
{
width
:
100px
;
border
:
none
;
border-top-left-radius
:
8px
;
border-bottom-left-radius
:
8px
;
}
.submit-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-top-right-radius
:
8px
;
border-bottom-right-radius
:
8px
;
}
.submit-button
:hover
{
background
:
#3baea0
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
th
{
padding
:
10px
}
td
{
padding
:
10px
}
.checkout-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#8bffff
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
}
.submit-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-top-right-radius
:
8px
;
border-bottom-right-radius
:
8px
;
}
.fee
{
width
:
100px
;
border
:
none
;
border-top-left-radius
:
8px
;
border-bottom-left-radius
:
8px
;
}
.title-box
{
padding
:
10px
;
font-weight
:
bold
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
}
</
style
>
src/views/CreateBookingView.vue
View file @
7afc0148
<
template
>
<div
class=
"d-flex justify-content-center"
>
<form
@
submit.prevent=
"addBooking"
class=
"col-12 col-md-6"
>
<div
class=
"mb-3"
>
<label
for=
"guest_name"
class=
"form-label"
>
Guest Name
</label>
<div
class=
"input-group"
>
<input
type=
"text"
id=
"guest_name"
v-model=
"guest_name"
name=
"guest_name"
class=
"form-control"
>
</div>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"title"
>
Create Booking
</h1>
</div>
<div
class=
"input-box"
>
<div
class=
"input-box-content"
>
<form
@
submit.prevent=
"addBooking"
class=
""
>
<div
class=
"input-title-box"
>
Enter information
</div>
<div
class=
""
>
<label
for=
"guest_name"
class=
""
>
Guest Name
</label>
<div
class=
""
>
<input
type=
"text"
id=
"guest_name"
v-model=
"guest_name"
name=
"guest_name"
class=
"input"
>
</div>
</div>
<div
class=
""
>
<label
for=
"guest_number"
class=
""
>
Guest Number
</label>
<div
class=
""
>
<input
type=
"text"
id=
"guest_number"
v-model=
"guest_number"
name=
"guest_number"
class=
"input"
>
</div>
</div>
<div
class=
""
>
<label
for=
"room_id"
class=
""
>
Room ID
</label>
<div
class=
""
>
<input
type=
"text"
id=
"room_id"
v-model=
"room_id"
name=
"room_id"
class=
"input"
>
</div>
</div>
<button
type=
"submit"
class=
"submit-button"
>
<i
class=
"bi bi-check-circle"
></i>
Submit
</button>
</form>
</div>
<div
class=
"mb-3"
>
<label
for=
"guest_number"
class=
"form-label"
>
Guest Number
</label>
<div
class=
"input-group"
>
<input
type=
"text"
id=
"guest_number"
v-model=
"guest_number"
name=
"guest_number"
class=
"form-control"
>
</div>
</div>
<div
class=
"mb-3"
>
<label
for=
"room_id"
class=
"form-label"
>
Room ID
</label>
<div
class=
"input-group"
>
<input
type=
"text"
id=
"room_id"
v-model=
"room_id"
name=
"room_id"
class=
"form-control"
>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
<i
class=
"bi bi-check-circle"
></i>
Submit
</button>
</form>
</div>
</div>
</
template
>
...
...
@@ -32,40 +42,165 @@ import axios from '../config'
import
router
from
'
@/router
'
export
default
defineComponent
({
name
:
'
CreateBookingView
'
,
name
:
"
CreateBookingView
"
,
setup
()
{
const
guest_name
=
ref
(
''
)
const
guest_number
=
ref
(
''
)
const
room_id
=
ref
(
''
)
const
guest_name
=
ref
(
""
);
const
guest_number
=
ref
(
""
);
const
room_id
=
ref
(
""
);
/**
* Add booking
*
*
* @return {void}
*/
const
addBooking
=
async
()
=>
{
console
.
log
(
guest_name
.
value
,
guest_number
.
value
,
room_id
.
value
)
console
.
log
(
guest_name
.
value
,
guest_number
.
value
,
room_id
.
value
)
;
try
{
const
response
=
await
axios
.
post
(
'
create-booking
'
,
{
const
response
=
await
axios
.
post
(
"
create-booking
"
,
{
guest_name
:
guest_name
.
value
,
guest_number
:
guest_number
.
value
,
room_id
:
room_id
.
value
})
console
.
log
(
response
.
data
)
alert
(
'
Create booking successfully
'
);
router
.
push
({
name
:
'
Booking
'
})
}
catch
(
error
)
{
alert
(
error
.
response
.
data
.
message
)
});
console
.
log
(
response
.
data
);
alert
(
"
Create booking successfully
"
);
router
.
push
({
name
:
"
Booking
"
});
}
}
catch
(
error
)
{
alert
(
error
.
response
.
data
.
message
);
}
};
return
{
guest_name
,
guest_number
,
room_id
,
addBooking
}
}
}
;
}
,
})
</
script
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.input-title-box
{
font-size
:
30px
;
font-weight
:
bold
;
margin-bottom
:
40px
;
}
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.input-box-content
{
display
:
flex
;
background-color
:
white
;
justify-content
:
space-between
;
height
:
100%
;
justify-content
:
center
;
padding
:
50px
;
padding-left
:
100px
;
padding-right
:
100px
;
border
:
none
;
border-radius
:
3px
;
box-shadow
:
5px
5px
5px
5px
#d5d5d5
;
}
.input-box
{
margin-top
:
40px
;
padding
:
20px
;
display
:
flex
;
justify-content
:
center
;
}
.input
{
border
:
none
;
background-color
:
rgb
(
240
,
240
,
240
);
border-radius
:
3px
;
width
:
300px
;
height
:
50px
;
}
.submit-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-radius
:
3px
;
width
:
300px
;
height
:
50px
;
}
.submit-button
:hover
{
background
:
#3baea0
;
}
}
@media
(
max-width
:
768px
)
{
.input-title-box
{
font-size
:
30px
;
font-weight
:
bold
;
margin-bottom
:
40px
;
}
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
.input-box
{
margin-top
:
40px
;
padding
:
20px
;
display
:
flex
;
justify-content
:
center
;
}
.input-box-content
{
display
:
flex
;
background-color
:
white
;
justify-content
:
space-between
;
height
:
100%
;
min-width
:
100%
;
justify-content
:
center
;
border
:
none
;
border-radius
:
3px
;
padding
:
50px
;
box-shadow
:
5px
5px
5px
5px
#d5d5d5
;
}
.input
{
border
:
none
;
background-color
:
rgb
(
240
,
240
,
240
);
border-radius
:
3px
;
width
:
250px
;
height
:
50px
;
margin-bottom
:
20px
;
}
.submit-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-radius
:
3px
;
width
:
250px
;
height
:
50px
;
}
}
</
style
>
src/views/DashboardView.vue
View file @
7afc0148
<
template
>
<div>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"title"
>
Dashboard
</h1>
</div>
<div>
<div
class=
"mb-5"
>
<h1>
Dashboard
</h1>
</div>
<table
class=
"table table-striped table-hover"
>
<thead>
<div
class=
"table-box"
>
<table
class=
"table"
>
<tr>
<th
scope=
"col"
>
Booking ID
</th>
<th
scope=
"col"
>
Guest Name
</th>
<th
scope=
"col"
>
Guest Number
</th>
<th
scope=
"col"
>
Room ID
</th>
<th
scope=
"col"
>
Total Price
</th>
<th>
Booking ID
</th>
<th>
Guest Name
</th>
<th>
Guest Number
</th>
<th>
Room ID
</th>
<th>
Total Price
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"guestInfo in guestInfos"
:key=
"guestInfo.id"
>
<td>
{{
guestInfo
.
id
}}
</td>
<td>
{{
guestInfo
.
guest_name
}}
</td>
<td>
{{
guestInfo
.
guest_number
}}
</td>
<td>
{{
guestInfo
.
room_id
}}
</td>
<td>
{{
guestInfo
.
checkin
.
total_price
}}
</td>
<tr
v-for=
"guest in guestInfos"
:key=
"guest.id"
>
<td>
{{
guest
.
id
}}
</td>
<td>
{{
guest
.
guest_name
}}
</td>
<td>
{{
guest
.
guest_number
}}
</td>
<td>
{{
guest
.
room_id
}}
</td>
<td>
{{
guest
.
checkin
.
total_price
}}
</td>
</tr>
</tbody>
<div
class=
"mb-5 mt-auto"
>
<h4
class=
"text-start"
>
Today's total interest:
{{
bookingInfos
.
total
}}
</h4>
<h4
class=
"text-start"
>
Current month total checkin:
{{
bookingInfos
.
lastMonth
}}
</h4>
<h4
class=
"text-start"
>
Current month total interest:
{{
bookingInfos
.
lastMonthTotal
}}
</h4>
</table>
</div>
</div>
<div
class=
"summary-box"
>
<div
class=
"summary"
>
<div
class=
"icon-box"
>
<i
class=
"bi bi-cash-stack money-icon"
></i>
</div>
<div
class=
"summary-title"
>
Today's interest
</div>
<div
class=
"summary-value"
>
{{
bookingInfos
.
total
}}
</div>
</div>
<div
class=
"summary"
>
<div
class=
"icon-box"
>
<i
class=
"bi bi-bag-check checkin-icon"
></i>
</div>
<div
class=
"summary-title"
>
This month checkin
</div>
<div
class=
"summary-value"
>
{{
bookingInfos
.
lastMonth
}}
</div>
</div>
<div
class=
"summary"
>
<div
class=
"icon-box"
>
<i
class=
"bi bi-safe2 safe-icon"
></i>
</div>
<div
class=
"summary-title"
>
This month interest
</div>
</table>
<div
class=
"summary-value"
>
{{
bookingInfos
.
lastMonthTotal
}}
</div>
</div>
</div>
</div>
</
template
>
...
...
@@ -51,8 +79,190 @@ export default defineComponent({
this
.
guestInfos
=
results
.
data
.
guestInfos
this
.
bookingInfos
=
results
.
data
.
bookingInfos
}
},
})
</
script
>
<
style
></
style
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
15px
;
padding
:
5px
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
.summary-box
{
display
:
flex
;
justify-content
:
space-evenly
;
margin-top
:
100px
;
}
.summary
{
background-color
:
rgb
(
255
,
255
,
255
);
box-shadow
:
5px
5px
5px
5px
rgb
(
235
,
234
,
234
);
border-radius
:
10px
;
width
:
250px
;
padding
:
15px
}
.summary-title
{
font-size
:
10px
;
color
:
rgb
(
181
,
181
,
181
);
}
.icon-box
{
font-size
:
80px
;
text-align
:
center
;
}
.money-icon
{
color
:
rgb
(
0
,
255
,
0
);
}
.checkin-icon
{
color
:
rgb
(
255
,
0
,
0
);
}
.safe-icon
{
color
:
rgb
(
252
,
255
,
64
);
}
.summary-value
{
font-size
:
30px
;
font-weight
:
bold
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
th
{
padding
:
10px
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
td
{
padding
:
10px
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.summary-box
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
padding
:
10px
;
}
.summary
{
background-color
:
rgb
(
255
,
255
,
255
);
box-shadow
:
5px
5px
5px
5px
rgb
(
235
,
234
,
234
);
border-radius
:
10px
;
width
:
250px
;
padding
:
15px
;
margin
:
10px
;
align-self
:
center
;
width
:
100%
;
}
.icon-box
{
font-size
:
50px
;
text-align
:
center
;
}
.money-icon
{
color
:
rgb
(
0
,
255
,
0
);
}
.checkin-icon
{
color
:
rgb
(
255
,
0
,
0
);
}
.safe-icon
{
color
:
rgb
(
252
,
255
,
64
);
}
.summary-value
{
font-size
:
30px
;
font-weight
:
bold
;
}
.summary-title
{
font-size
:
10px
;
color
:
rgb
(
181
,
181
,
181
);
}
}
</
style
>
src/views/EmployeeView.vue
View file @
7afc0148
<
template
>
<div>
<div>
<h1
>
Booking
</h1><br
>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"title"
>
Employee
</h1
>
</div>
<
table
class=
"table table-striped
"
>
<t
head
>
<tr>
<th
scope=
"col"
>
Employee ID
</th>
<th
scope=
"col"
>
Employee Name
</th>
<th
scope=
"col"
>
Role
</th>
<th
scope=
"col"
>
Status
</th>
<th
scope=
"col"
>
Shift
</th>
<th
scope=
"col"
>
Day Off
</th>
<th
scope=
"col"
>
Salary
</th>
<
div
class=
"table-box
"
>
<t
able
class=
"table"
>
<tr
class=
""
>
<th>
Employee ID
</th>
<th>
Employee Name
</th>
<th>
Role
</th>
<th>
Status
</th>
<th>
Shift
</th>
<th>
Day Off
</th>
<th>
Salary
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"employee in employees"
:key=
"employee.id"
>
<td>
{{
employee
.
id
}}
</td>
<td>
{{
employee
.
name
}}
</td>
...
...
@@ -25,8 +23,8 @@
<td>
{{
employee
.
day_off
}}
</td>
<td>
{{
employee
.
salary
}}
</td>
</tr>
</t
body
>
</
table
>
</t
able
>
</
div
>
</div>
</
template
>
...
...
@@ -48,3 +46,100 @@ export default defineComponent({
}
})
</
script
>
<
style
scoped
>
@media
(
min-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
15px
;
padding
:
5px
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
th
{
padding
:
10px
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
td
{
padding
:
10px
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
}
</
style
>
src/views/LoginView.vue
View file @
7afc0148
<
template
>
<div
class=
"text-center"
>
<main
class=
"form-signin d-flex justify-content-center align-items-center"
>
<form
@
submit.prevent=
"submitForm"
>
<h1>
Login
</h1>
<div
class=
"form-floating "
>
<input
class=
form-control
type=
"text"
id=
"username"
name=
"username"
v-model=
"username"
>
<label
for=
"username"
class=
"floatingInput"
>
Username
</label>
<div
class=
"error"
></div>
</div>
<br>
<div
class=
"form-floating"
>
<input
class=
"form-control"
type=
"text"
name=
"password"
id=
"password"
v-model=
"password"
>
<label
for=
"password"
class=
"floatingInput"
>
Password
</label>
<div
class=
"error"
></div>
</div><br>
<button
type=
"submit"
@
click=
"submitform"
class=
"btn btn-lg btn-primary w-100"
>
Login
</button>
<div
class=
"body"
>
<form
@
submit.prevent=
"submitForm"
class=
"login-form-box"
>
<div
class=
"login-form"
>
<div
class=
"input-title"
>
Login
</div>
<div
class=
"input-box"
>
<div
for=
"username"
class=
"input-label"
>
Username
</div>
<input
type=
"text"
id=
"username"
name=
"username"
v-model=
"username"
class=
"input"
>
</div>
<div
class=
"input-box"
>
<div
for=
"password"
class=
"input-label"
>
Password
</div>
<input
type=
"password"
id=
"password"
name=
"password"
v-model=
"password"
class=
"input"
>
</div>
<button
type=
"submit"
@
click=
"submitForm"
class=
"submit-button"
>
Login
</button>
<div>
{{
error
}}
</div>
</form>
</main>
</div>
</form>
</div>
</
template
>
...
...
@@ -42,9 +39,9 @@ export default defineComponent({
* @return {void}
*/
const
submitForm
=
()
=>
{
store
.
dispatch
(
'
login
'
,
{
username
:
username
.
value
,
password
:
password
.
value
})
store
.
dispatch
(
'
login
'
,
{
username
:
username
.
value
,
password
:
password
.
value
})
}
}
return
{
username
,
...
...
@@ -55,3 +52,67 @@ export default defineComponent({
},
})
</
script
>
<
style
scoped
>
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
100px
;
border-radius
:
3px
;
min-height
:
100%
;
}
.login-form-box
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
height
:
100%
;
}
.login-form
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
space-between
;
align-items
:
center
;
background-color
:
rgb
(
255
,
255
,
255
);
padding
:
20px
;
border-radius
:
3px
;
min-width
:
500px
;
min-height
:
400px
;
border
:
none
;
border-radius
:
3px
;
box-shadow
:
5px
5px
5px
5px
#d5d5d5
;
}
.submit-button
{
border
:
none
;
background
:
#93e4c1
;
color
:
white
;
border-radius
:
3px
;
width
:
300px
;
height
:
50px
;
}
.submit-button
:hover
{
background
:
#3baea0
;
}
.input-title
{
font-size
:
30px
;
font-weight
:
bold
;
}
.input-label
{
font-size
:
15px
;
color
:
rgb
(
164
,
164
,
164
);
}
.input
{
border
:
none
;
background-color
:
rgb
(
240
,
240
,
240
);
border-radius
:
3px
;
width
:
300px
;
height
:
50px
;
}
</
style
>
src/views/ModifyView.vue
View file @
7afc0148
This diff is collapsed.
Click to expand it.
src/views/RoomView.vue
View file @
7afc0148
<
template
>
<div>
<div>
<h1
>
Room
</h1><br
>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
"title"
>
Room
</h1
>
</div>
<
table
class=
"table table-striped
"
>
<t
head
>
<tr>
<th
scope=
"col"
>
Room ID
</th>
<th
scope=
"col"
>
Room Name
</th>
<th
scope=
"col"
>
Type
</th>
<th
scope=
"col"
>
Hour Price
</th>
<th
scope=
"col"
>
Day Price
</th>
<th
scope=
"col"
>
Status
</th>
<th
scope=
"col"
>
Size
</th>
<th
scope=
"col"
>
Balcony
</th>
<th
scope=
"col"
>
View
</th>
<th
scope=
"col"
>
Smoking
</th>
<th
scope=
"col"
>
Floor
</th>
<th
scope=
"col"
>
Bathtub
</th>
<th
scope=
"col"
>
Actions
</th>
<
div
class=
"table-box
"
>
<t
able
class=
"table"
>
<tr
class=
""
>
<th>
Room ID
</th>
<th>
Room Name
</th>
<th>
Type
</th>
<th>
Hour Price
</th>
<th>
Day Price
</th>
<th>
Status
</th>
<th>
Size
</th>
<th>
Balcony
</th>
<th>
View
</th>
<th>
Smoking
</th>
<th>
Floor
</th>
<th>
Bathtub
</th>
<th>
Actions
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"room in rooms"
:key=
"room.id"
>
<td>
{{
room
.
id
}}
</td>
<td>
{{
room
.
name
}}
</td>
...
...
@@ -37,14 +35,14 @@
<td>
{{
room
.
bathtub
}}
</td>
<td>
<router-link
:to=
"
{ name: 'Modify', params: { id: room.id } }">
<button
class=
"
btn btn-outline-primary
"
>
<button
class=
"
modify-button
"
>
<i
class=
"bi bi-pencil-square"
></i>
Modify
</button>
</router-link>
</td>
</tr>
</t
body
>
</
table
>
</t
able
>
</
div
>
</div>
</
template
>
...
...
@@ -65,3 +63,118 @@ export default defineComponent({
}
})
</
script
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
15px
;
padding
:
5px
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
.modify-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#8bffff
;
color
:
white
}
.modify-button
:hover
{
background
:
#82acff
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
th
{
padding
:
10px
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
td
{
padding
:
10px
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
.modify-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#8bffff
;
color
:
white
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
}
</
style
>
src/views/UserListView.vue
View file @
7afc0148
<
template
>
<div>
<h1>
List of user:
</h1><br>
<table
class=
"table table-striped"
>
<div
class=
"body"
>
<div
class=
"title-box"
>
<h1
class=
title
>
List of user:
</h1>
</div>
<div>
<div
class=
"table-box"
>
<table
class=
"table"
>
<tr>
<th>
ID
</th>
<th>
Username
</th>
<th>
Role
</th>
<th>
Actions
</th>
</tr>
<tr
v-for=
"user in users"
:key=
"user.id"
>
<td>
{{
user
.
id
}}
</td>
<td>
{{
user
.
username
}}
</td>
<td>
{{
user
.
role
}}
</td>
<td>
<button
@
click=
"deleteUser(user.id)"
class=
"delete-button"
>
<i
class=
"bi bi-trash"
></i>
Delete
</button>
</td>
</tr>
</table>
</div>
</div>
<!--
<table
class=
"table table-striped"
>
<thead>
<tr>
<th
scope=
"col"
>
ID
</th>
<th
scope=
"col"
>
Username
</th>
<th
scope=
"col"
>
Role
</th>
<th
scope=
"col"
>
Actions
</th>
<th>
ID
</th>
<th>
Username
</th>
<th>
Role
</th>
<th>
Actions
</th>
</tr>
</thead>
<tbody>
...
...
@@ -22,7 +46,7 @@
</td>
</tr>
</tbody>
</table>
</table>
-->
</div>
</
template
>
...
...
@@ -76,3 +100,134 @@ export default defineComponent({
},
})
</
script
>
<
style
scoped
>
@media
(
min-width
:
769px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
padding
:
20px
;
border-radius
:
3px
;
height
:
100%
;
}
.table-box
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
}
th
{
padding
:
10px
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
color
:
white
;
}
.delete-button
:hover
{
background
:
#ff5757
;
}
.fee-box
{
display
:
flex
;
}
.fee
{
width
:
100px
;
border
:
none
;
border-top-left-radius
:
8px
;
border-bottom-left-radius
:
8px
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
40px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
}
@media
(
max-width
:
768px
)
{
.body
{
background-color
:
rgb
(
240
,
240
,
240
);
display
:
flex
;
flex-direction
:
column
;
min-height
:
100vh
;
}
.table-box
{
overflow
:
scroll
;
}
th
{
padding
:
10px
}
.table
{
border
:
2px
rgb
(
222
,
222
,
222
)
solid
;
border-radius
:
13px
;
padding
:
5px
;
white-space
:
nowrap
;
}
td
{
padding
:
10px
}
.title-box
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
10px
;
}
.title
{
order
:
0
;
font-weight
:
bold
;
}
tr
:nth-child
(
even
)
{
background-color
:
rgb
(
224
,
224
,
224
);
}
td
:first-child
{
border-top-left-radius
:
15px
;
border-bottom-left-radius
:
15px
;
}
td
:last-child
{
border-top-right-radius
:
15px
;
border-bottom-right-radius
:
15px
;
}
.delete-button
{
border
:
none
;
border-radius
:
20px
;
background
:
#ff8585
;
color
:
white
;
}
}
</
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