Compare commits

...

7 commits

Author SHA1 Message Date
069a221b29 Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m24s
* develop:
  fix: style
  fix:tel
  fix:tel
  fix
  feat: add contact banner
2026-03-25 12:58:06 +07:00
30b63f1b52
Merge pull request #1561 from Frappet/feat/banner
feat: add contact banner
2026-03-25 12:55:56 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
c066ee577a fix: style 2026-03-25 12:10:53 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
59c188a3a9 fix:tel 2026-03-25 11:59:14 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
2b0d3340ee fix:tel 2026-03-25 11:54:34 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
140553666d fix 2026-03-25 11:05:28 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
e9c545a18d feat: add contact banner 2026-03-25 10:20:48 +07:00
5 changed files with 40 additions and 1 deletions

View file

@ -11,6 +11,7 @@ import http from "@/plugins/http";
import config from "@/app.config";
import DialogHeader from "@/components/DialogHeader.vue";
import FooterContact from "@/components/FooterContact.vue";
const $q = useQuasar();
const store = usePositionKeycloakStore();
@ -391,7 +392,11 @@ function onClose() {
</q-card-section>
<q-separator />
<q-card-actions align="right">
<q-card-actions class="q-px-sm items-center">
<div class="row items-center q-pa-sm">
<FooterContact />
</div>
<q-space />
<q-btn
type="submit"
for="#submitForm"

View 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>

View file

@ -22,6 +22,12 @@ export default defineComponent({
label="กลับไปหน้าหลัก"
no-caps
/>
<div class="q-mt-xl text-subtitle1">
<q-icon name="mdi-alert-circle-outline" size="20px" class="q-mr-sm" />
พบปญหาการใชงานกรณาตดตอผแลระบบ
<span class="text-weight-bold q-ml-xs">088-264-9800</span>
</div>
</div>
</div>
</template>

View file

@ -18,6 +18,12 @@
label="กลับหน้าหลัก"
no-caps
/>
<div class="q-mt-xl text-subtitle1 text-grey-8">
<q-icon name="mdi-alert-circle-outline" size="20px" class="q-mr-sm" />
พบปญหาการใชงานกรณาตดตอผแลระบบ
<span class="text-weight-bold text-dark q-ml-xs">088-264-9800</span>
</div>
</div>
</div>
</template>

View file

@ -28,6 +28,7 @@ import { tabList, tabListPlacement } from "../interface/request/main/main";
import LoginLinkage from "@/components/LoginLinkage.vue";
import DialogDebug from "@/components/Dialogs/DialogDebug.vue";
import FooterContact from "@/components/FooterContact.vue";
// landing page config url
const configParam = {
@ -1282,6 +1283,10 @@ function onViewDetailNoti(url: string) {
<router-view :key="$route.fullPath" />
</q-page>
</q-page-container>
<q-footer class="bg-grey-1 text-dark q-pa-md" bordered>
<FooterContact />
</q-footer>
<full-loader :visibility="loader" />
<LoginLinkage v-model:modal="modalLoginLinkage" />
<DialogDebug v-model:modal="modalDebug" />