diff --git a/frontend/src/pages/public/About.vue b/frontend/src/pages/public/About.vue index bfc8750..cfed169 100644 --- a/frontend/src/pages/public/About.vue +++ b/frontend/src/pages/public/About.vue @@ -24,7 +24,7 @@ export default { }, methods: { retrieve_directories() { - ContentApi.retrieve_about_directories() + ContentApi.retrieve_about_directories(window.location.host) .then((response) => { this.directories = response.data }) @@ -62,17 +62,20 @@ export default { padding: 0; } } + .directory_cover_image { width: 100%; border-radius: 16px; margin-bottom: 16px; } + .directory-title { font-size: 48px; // font-weight: bold; color: #18181a; margin-bottom: 5px; } + .directory-subtitle { font-size: 14px; color: #666666; diff --git a/frontend/src/pages/public/Blogs.vue b/frontend/src/pages/public/Blogs.vue index d16296a..f29644f 100644 --- a/frontend/src/pages/public/Blogs.vue +++ b/frontend/src/pages/public/Blogs.vue @@ -23,7 +23,7 @@ export default { }, methods: { retrieve_blogs() { - ContentApi.retrieve_blogs() + ContentApi.retrieve_blogs(window.location.host) .then((response) => { this.blogs = response.data }) diff --git a/frontend/src/pages/public/Career.vue b/frontend/src/pages/public/Career.vue index 3b72088..ed2330d 100644 --- a/frontend/src/pages/public/Career.vue +++ b/frontend/src/pages/public/Career.vue @@ -24,7 +24,7 @@ export default { }, methods: { retrieve_directories() { - ContentApi.retrieve_career_directories() + ContentApi.retrieve_career_directories(window.location.host) .then((response) => { this.directories = response.data }) @@ -61,6 +61,7 @@ export default { p { margin: 0; } + .career-title { font-size: 32px; margin-bottom: 10px; diff --git a/frontend/src/pages/public/Contact.vue b/frontend/src/pages/public/Contact.vue index 0f21013..c2241a1 100644 --- a/frontend/src/pages/public/Contact.vue +++ b/frontend/src/pages/public/Contact.vue @@ -23,7 +23,7 @@ export default { }, methods: { retrieve_directories() { - ContentApi.retrieve_contact_directories() + ContentApi.retrieve_contact_directories(window.location.host) .then((response) => { this.directories = response.data }) @@ -63,6 +63,7 @@ export default { img { width: 100%; } + .contact-left-content { padding: 32px; display: flex; @@ -82,6 +83,7 @@ export default { } } } + .contact-right { margin-left: 24px; box-shadow: 0px 0px 24px 0px #d4d3e380; diff --git a/frontend/src/pages/user/messages/Home.vue b/frontend/src/pages/user/messages/Home.vue index 6212e45..fbb695d 100644 --- a/frontend/src/pages/user/messages/Home.vue +++ b/frontend/src/pages/user/messages/Home.vue @@ -20,7 +20,6 @@ {{ getDateFromFulltimeString(conversation.create_time) }} -
{{ conversation.last_message?.message_body }} @@ -83,24 +82,10 @@ export default { components: { SvgIcon }, name: 'MessageHub', props: {}, - mounted() { - // this.fetchConversations() - }, - // watch: { - // conversations: { - // handler: function (val) { - // if (val && val.length > 0) { - // this.current_thread = val[0] - // this.clearUnreadMessageBy(val[0]) - // } - // }, - // deep: false - // } - // }, + mounted() {}, data() { return { userIdentityNote: this.mnx_getUserIdentity(), - // conversations: [], selConversation: null, messages: [], writtenMessage: null @@ -126,19 +111,6 @@ export default { } }, methods: { - // fetchConversations() { - // MessageHubApi.fetchConversations(new Date('01 Jan 1970 00:00:00 GMT').toISOString()) - // .then((response) => { - // const conversations = response.data.conversations || [] - // this.conversations = conversations - // if (conversations.length > 0) { - // this.selectConversation(conversations[0]) - // } - // }) - // .catch((error) => { - // this.mnx_backendErrorHandler(error) - // }) - // }, fetchMessageForConversation(conversation_id) { const jwt = userUtils.getJwtToken() MessageHubApi.fetchMessages( diff --git a/frontend/src/pages/user/providers/Home.vue b/frontend/src/pages/user/providers/Home.vue index bec25dd..442bfb2 100644 --- a/frontend/src/pages/user/providers/Home.vue +++ b/frontend/src/pages/user/providers/Home.vue @@ -447,11 +447,6 @@ export default { border-top: 1px solid #dee2e6; } -// .statistics-content-label { -// @extend .label-text-light; -// @extend .w-100; -// } - .statistics-content-container { @extend .flex-colum-container; padding: 0; diff --git a/frontend/src/pages/user/requests/Home.vue b/frontend/src/pages/user/requests/Home.vue index aedb0c5..bc9918a 100644 --- a/frontend/src/pages/user/requests/Home.vue +++ b/frontend/src/pages/user/requests/Home.vue @@ -77,11 +77,23 @@ {{ $t('Propose') }}
-
- -
@@ -179,12 +191,38 @@
+