web-faq/src/views/MainLayout.vue

192 lines
6.2 KiB
Vue
Raw Normal View History

2023-12-13 10:09:04 +07:00
<script setup lang="ts">
import { onMounted, ref, watch } from "vue";
import { useRoute, useRouter } from "vue-router";
import { useQuasar } from "quasar";
const router = useRouter();
const $q = useQuasar();
const currentRouteName = ref('home');
const text = ref('');
const menuList = [
{text:'ข้อมูลหลัก',path: 'metadata'},
{text:'โครงสร้างอัตรากำลัง',path: 'organizational'},
2023-12-13 14:41:34 +07:00
2023-12-13 10:09:04 +07:00
];
const mainmenu = [
{text: 'ข้อมูลหลัก', icon:'mdi-account-outline', path: 'metadata'},
2023-12-13 14:41:34 +07:00
{text: 'โครงสร้างอัตรากำลัง', icon:'mdi-account-group-outline',path: 'organizational'},
{text: 'ทะเบียนประวัติ', icon:'mdi-file-account-outline',path: 'organizational'},
{text: 'ทะเบียนประวัติลูกจ้าง', icon:'mdi-file-account-outline',path: 'organizational'},
{text: 'ออกคำสั่ง', icon:'mdi-file-certificate-outline',path: 'organizational'},
{text: 'สรรหา', icon:'mdi-magnify',path: 'organizational'},
{text: 'บรรจุ แต่งตั้ง ย้าย โอน', icon:'mdi-account-check',path: 'organizational'},
{text: 'พ้นราชการ', icon:'mdi-account-cancel-outline',path: 'organizational'},
{text: 'เครื่องราชฯ', icon:'mdi-medal-outline',path: 'organizational'},
{text: 'การลา', icon:'mdi-calendar',path: 'organizational'},
{text: 'วินัย', icon:'mdi-scale-balance',path: 'organizational'}
2023-12-13 10:09:04 +07:00
];
const clickMain = (val: string) => {
router.push(val)
currentRouteName.value = val
};
const goHome = () => {
router.push('/')
currentRouteName.value = 'home'
};
</script>
<!-- โครงเว -->
<template>
<q-layout view="hHh LpR fFr">
<!-- header -->
<q-header flat class="text-dark col-12 bg-header bg-transparent" height-hint="7">
<q-toolbar class="q-my-xs items-center" :style="$q.screen.gt.xs ? 'padding: 1% 2%;': 'padding: 1% 4%;'">
<div class="row items-center no-wrap" v-if="$q.screen.gt.xs">
<q-img src="@/assets/logo.png" spinner-color="white" style="height: 35px; max-width: 35px" class=" cursor-pointer" @click="goHome" />
<q-separator vertical inset class="q-ml-md" />
<div class="row q-ml-md items-center q-pt-xs">
<div
style="color: #ffffff; letter-spacing: 1px; line-height:10px;"
class="text-body2 text-weight-bolder col-12"
>
ระบบ<span class="text-primary">ทรพยากรบคคล</span>
</div>
<div class="text-caption text-white">SUPPORT</div>
</div>
</div>
<div v-else class="row items-center">
<img src="@/assets/logo.png" style="height: 35px; max-width: 35px" />
</div>
</q-toolbar>
</q-header>
<div class="bg-top" :style="$q.screen.gt.xs ? 'height: 240px;': 'height: 240px;'" />
<!-- end header -->
<q-page-container class="bg-grey-2 q-pb-md">
<q-page :style="$q.screen.gt.xs ? 'padding: 1.8% 2%; margin-top: -250px;': 'padding: 5% 4%; margin-top: -250px;'">
<div class="col-12 row justify-center">
<div class="col-xs-10 col-md-8 text-h6 text-white">
<div class="q-pb-md">เราจะชวยคณไดอยางไร</div>
<q-input outlined bg-color="white" label="ค้นหา" v-model="text" dense>
<template v-slot:prepend>
<q-icon name="search" />
</template>
</q-input>
</div>
<div class="col-xs-10 col-md-8 row q-col-gutter-md" style=" margin-top: 80px;" v-if="currentRouteName == 'home'">
<div class="col-12 row justify-center text-h6 text-dark">ระบบทรพยากรบคคล</div>
<div class="col-12"><q-separator color="grey-4" /></div>
<div class="col-12 row q-col-gutter-lg">
<div class="col-xs-12 col-sm-4"
v-for="(menu , index) in mainmenu"
:key="index"
>
<q-card class="q-pa-md row col-12 items-center text-dark cursor-pointer cardmenu" @click="clickMain(menu.path)" ><!-- router.push({ name: `${}`}) -->
<q-icon size="20px" :name="`${menu.icon}`" />
<div class="q-pl-md">{{ menu.text }}</div>
</q-card>
</div>
</div>
</div>
<div class="col-11 row q-col-gutter-md" style=" margin-top: 80px;" v-else>
<div class="col-3 row">
<q-card class="q-px-sm col-12">
<q-list dense bordered padding class="rounded-borders text-grey-8">
<q-item
v-for="(menuItem, index) in menuList" :key="index"
class="rounded-borders text-weight-light"
clickable
v-ripple
:to="{ name: `${menuItem.path}`}"
active-class="text-blue-7 text-weight-medium bg-blue-1"
>
<q-item-section class="q-py-sm">
{{ menuItem.text }}
</q-item-section>
</q-item>
</q-list>
</q-card>
</div>
2023-12-13 14:41:34 +07:00
<div class="col-9 row ">
<q-card class="col-12 content-heigt">
2023-12-13 10:09:04 +07:00
<router-view :key="$route.fullPath" />
</q-card>
</div>
</div>
</div>
</q-page>
</q-page-container>
</q-layout>
</template>
<style>
.bg-drawer{
background: #242a3d;
}
.menu {
padding-bottom: 5px;
padding-top: 5px;
}
.tabsHome .q-tab__icon{
font-size: 18px;
}
.border-100{
border-radius: 100px;
}
.bg-header{
background:rgba(39, 50, 56, 0)8 !important;
}
.bg-top{
/* background: #273238; */
background-image: url("@/assets/1.png");
background-size: cover;
}
.header-br{
border-bottom: 1px solid #fdfdfd31;
}
.menuActive {
background: #1e2234;
border-radius: 0 100px 100px 0;
margin-right: 4%;
}
.q-card {
box-shadow: 3px 3px 20px -10px rgba(151, 150, 150, 0.261) !important;
border: 1px solid #eeeded;
}
.q-menu {
box-shadow: 3px 3px 10px 1px rgba(95, 95, 95, 0.15) !important;
}
.toptitle {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 1.2%;
}
.q-field--outlined .q-field__control{
border-radius: 5px;
}
.q-field--outlined .q-field__control:before {
border-color: #C8D3DB;
}
.q-field--outlined .q-icon{
color: #7474747f;
}
.cardmenu:hover{
border-color: #02A998;
color: #02A998 !important;
box-shadow: 3px 3px 10px 1px rgba(95, 95, 95, 0.15) !important;
}
2023-12-13 14:41:34 +07:00
.content-heigt{
height: 57vh !important;
overflow-y:auto;
}
2023-12-13 10:09:04 +07:00
</style>