fix
This commit is contained in:
@@ -2,7 +2,7 @@ VITE_USER_NODE_ENV = 'development_cloud'
|
|||||||
# VITE_APP_BASE_URL = 'https://aida.com.hk/test'
|
# VITE_APP_BASE_URL = 'https://aida.com.hk/test'
|
||||||
# VITE_APP_BASE_URL = 'http://18.167.251.121:10088'
|
# VITE_APP_BASE_URL = 'http://18.167.251.121:10088'
|
||||||
# VITE_APP_BASE_URL = 'https://api.aida.com.hk'
|
# VITE_APP_BASE_URL = 'https://api.aida.com.hk'
|
||||||
# VITE_APP_BASE_URL = 'https://develop.api.aida.com.hk'
|
VITE_APP_BASE_URL = 'https://develop.api.aida.com.hk'
|
||||||
VITE_APP_BASE_URL = 'https://www.develop-ms.api.aida.com.hk/'
|
# VITE_APP_BASE_URL = 'https://www.develop-ms.api.aida.com.hk/'
|
||||||
|
|
||||||
# VITE_APP_BASE_URL = 'http://localhost:22170'
|
# VITE_APP_BASE_URL = 'http://localhost:22170'
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -25,3 +25,5 @@ dist.rar
|
|||||||
.eslintrc-auto-import.json
|
.eslintrc-auto-import.json
|
||||||
components.d.ts
|
components.d.ts
|
||||||
.cursor
|
.cursor
|
||||||
|
*.zip
|
||||||
|
*.7z
|
||||||
@@ -71,6 +71,8 @@
|
|||||||
|
|
||||||
.img-src {
|
.img-src {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
.crop-tool {
|
.crop-tool {
|
||||||
|
|||||||
@@ -130,7 +130,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.img-src {
|
.img-src {
|
||||||
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-pic {
|
.main-pic {
|
||||||
|
|||||||
@@ -108,8 +108,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const resolveTitle = (title?: RouteMetaValue<string>, titleKey?: RouteMetaValue<string>) => {
|
const resolveTitle = (title?: RouteMetaValue<string>, titleKey?: RouteMetaValue<string>) => {
|
||||||
const key = resolveMetaValue(titleKey)
|
let key = title || titleKey
|
||||||
return title ? t(title) || "" : ""
|
// const key = resolveMetaValue(titleKey)
|
||||||
|
return key ? t(key) || "" : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
const autoBreadcrumbs = computed(() => {
|
const autoBreadcrumbs = computed(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user