Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quasar-web-base
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
Nguyễn Hải Sơn
quasar-web-base
Commits
14689d75
Commit
14689d75
authored
Nov 29, 2022
by
Nguyễn Đức Thắng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPDATE
parent
f4599af4
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
67 additions
and
6 deletions
+67
-6
configurations.example.ts
src/assets/configurations.example.ts
+5
-5
index.vue
src/pages/bc-booking/index.vue
+3
-0
index.vue
src/pages/bc-truy-cap/index.vue
+3
-0
index.vue
src/pages/bc-yeu-thich/index.vue
+3
-0
index.vue
src/pages/cau-hinh-trang-chu/index.vue
+18
-0
index.vue
src/pages/danh-sach-dich-vu/index.vue
+3
-0
routes.ts
src/router/routes.ts
+32
-1
No files found.
src/assets/configurations.example.ts
View file @
14689d75
export
const
config
=
{
// pro
//
API_ENDPOINT: 'https://cms.vab.vn/api/',
//
API_IMAGE_ENDPOINT: 'https://cms.vab.vn/file/upload/',
API_ENDPOINT
:
'https://cms.vab.vn/api/'
,
API_IMAGE_ENDPOINT
:
'https://cms.vab.vn/file/upload/'
,
// dev
API_ENDPOINT
:
'http://103.147.34.20:10700/api/'
,
API_IMAGE_ENDPOINT
:
'http://103.147.34.20:10705/file/upload/'
,
//
API_ENDPOINT: 'http://103.147.34.20:10700/api/',
//
API_IMAGE_ENDPOINT: 'http://103.147.34.20:10705/file/upload/',
API_RES_CODE
:
{
OK
:
{
...
...
@@ -13,7 +13,7 @@ export const config = {
TOKEN_INVALID
:
{
code
:
3
,
},
TOKEN_EXPIRES
:
{
TOKEN_EXPIRES
:
{
code
:
3
,
},
'-1'
:
{
...
...
src/pages/bc-booking/index.vue
0 → 100644
View file @
14689d75
<
template
>
<div></div>
</
template
>
\ No newline at end of file
src/pages/bc-truy-cap/index.vue
0 → 100644
View file @
14689d75
<
template
>
<div></div>
</
template
>
\ No newline at end of file
src/pages/bc-yeu-thich/index.vue
0 → 100644
View file @
14689d75
<
template
>
<div></div>
</
template
>
\ No newline at end of file
src/pages/cau-hinh-trang-chu/index.vue
0 → 100644
View file @
14689d75
<
template
>
<q-page
class=
"row items-center justify-evenly"
>
<!--
<q-btn
color=
"primary"
@
click=
"$store.dispatch('authentication/logOut')"
>
Logout
</q-btn
>
-->
</q-page>
</
template
>
<
script
lang=
"ts"
>
import
{
defineComponent
,
ref
}
from
'vue'
;
export
default
defineComponent
({
name
:
'PageIndex'
,
});
</
script
>
src/pages/danh-sach-dich-vu/index.vue
0 → 100644
View file @
14689d75
<
template
>
<div></div>
</
template
>
\ No newline at end of file
src/router/routes.ts
View file @
14689d75
...
...
@@ -28,6 +28,11 @@ export enum Pages {
news
=
'cau-hinh-tin-tuc'
,
hotProduct
=
'cau-hinh-san-pham-noi-bat'
,
configPartner
=
'cau-hinh-doi-tac-truyen-thong'
,
configHome
=
'cau-hinh-trang-chu'
,
listService
=
'danh-sach-dich-vu'
,
bcTC
=
'bc-truy-cap'
,
bcYT
=
'bc-yeu-thich'
,
bcBK
=
'bc-booking'
,
}
const
routes
:
RouteRecordRaw
[]
=
[
...
...
@@ -83,7 +88,7 @@ const routes: RouteRecordRaw[] = [
{
path
:
'/xep-hang-nghe-sy'
,
component
:
()
=>
import
(
'pages/xep-hang-nghe-sy/index.vue'
),
name
:
Pages
.
artistRank
name
:
Pages
.
artistRank
,
},
{
path
:
'/khach-hang'
,
...
...
@@ -166,6 +171,32 @@ const routes: RouteRecordRaw[] = [
import
(
'pages/cau-hinh-doi-tac-truyen-thong/index.vue'
),
name
:
Pages
.
configPartner
,
},
{
path
:
'cau-hinh-trang-chu'
,
component
:
()
=>
import
(
'pages/cau-hinh-trang-chu/index.vue'
),
name
:
Pages
.
configHome
,
},
{
path
:
'danh-sach-dich-vu'
,
component
:
()
=>
import
(
'pages/danh-sach-dich-vu/index.vue'
),
name
:
Pages
.
listService
,
},
{
path
:
'bc-truy-cap'
,
component
:
()
=>
import
(
'pages/bc-truy-cap/index.vue'
),
name
:
Pages
.
bcTC
,
},
{
path
:
'bc-yeu-thich'
,
component
:
()
=>
import
(
'pages/bc-yeu-thich/index.vue'
),
name
:
Pages
.
bcYT
,
},
{
path
:
'bc-booking'
,
component
:
()
=>
import
(
'pages/bc-booking/index.vue'
),
name
:
Pages
.
bcBK
,
},
],
},
...
...
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