Compare commits
6 commits
4f5c05a3f8
...
20927729a4
| Author | SHA1 | Date | |
|---|---|---|---|
| 20927729a4 | |||
| 94a35fd58f | |||
|
|
2984fb6a56 | ||
|
|
834355b044 | ||
|
|
a95e502b8d | ||
|
|
13d541bc18 |
3 changed files with 26 additions and 1 deletions
|
|
@ -13,6 +13,7 @@ import config from "@/app.config";
|
|||
import type { MenuMainList } from "@/modules/01_dashboard/interface/Main";
|
||||
|
||||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
import FooterContact from "@/components/FooterContact.vue";
|
||||
|
||||
const $q = useQuasar();
|
||||
const store = usePositionKeycloakStore();
|
||||
|
|
@ -354,7 +355,9 @@ function onClose() {
|
|||
</q-card-section>
|
||||
|
||||
<q-separator />
|
||||
<q-card-actions align="right">
|
||||
<q-card-actions class="q-px-md items-center">
|
||||
<FooterContact />
|
||||
<q-space />
|
||||
<q-btn
|
||||
type="submit"
|
||||
for="#submitForm"
|
||||
|
|
|
|||
17
src/components/FooterContact.vue
Normal file
17
src/components/FooterContact.vue
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<div class="row items-center justify-center q-gutter-sm">
|
||||
<q-icon name="support_agent" color="primary" size="sm" />
|
||||
<span class="text-body2">
|
||||
พบปัญหาการใช้งานกรุณาติดต่อผู้ดูแลระบบ
|
||||
<span class="text-weight-medium text-primary"
|
||||
><a href="tel:0882649800" style="text-decoration: none; color: inherit"
|
||||
>088-264-9800</a
|
||||
>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts"></script>
|
||||
|
||||
<style scoped></style>
|
||||
|
|
@ -20,6 +20,7 @@ import { useKpiDataStore } from "@/modules/08_KPI/store";
|
|||
|
||||
import DialogResetPass from "@/components/DialogResetPass.vue";
|
||||
import DialogDebug from "@/components/DialogDebug.vue";
|
||||
import FooterContact from "@/components/FooterContact.vue";
|
||||
|
||||
// landing page config url
|
||||
const configParam = {
|
||||
|
|
@ -767,6 +768,10 @@ watch(
|
|||
<router-view :key="$route.fullPath" />
|
||||
</q-page>
|
||||
</q-page-container>
|
||||
|
||||
<q-footer class="bg-grey-1 text-dark q-pa-md">
|
||||
<FooterContact />
|
||||
</q-footer>
|
||||
</q-layout>
|
||||
|
||||
<DialogResetPass v-model="modalResetPass" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue