stroes roleUser ,แก้ไขคำผิด

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-08 10:31:29 +07:00
parent 6985318f13
commit 7c60c42cb0
3 changed files with 53 additions and 6 deletions

View file

@ -2291,9 +2291,9 @@ const getClass = (val: boolean) => {
:rules="[
(val) =>
!!val ||
`${'กรุณากรอกครังที่ (เรื่องการดำเนินการทางวินัย)'}`,
`${'กรุณากรอกครังที่ (เรื่องการดำเนินการทางวินัย)'}`,
]"
:label="`${'ครังที่ (เรื่องการดำเนินการทางวินัย)'}`"
:label="`${'ครังที่ (เรื่องการดำเนินการทางวินัย)'}`"
hide-bottom-space
/>
</div>

41
src/stores/roleUser.ts Normal file
View file

@ -0,0 +1,41 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useroleUserDataStore = defineStore("roleusers", () => {
const insignia1Role = ref<boolean>(false)
const insignia2Role = ref<boolean>(false)
const caregiverRole = ref<boolean>(false)
const chairmanRole = ref<boolean>(false)
const commanderRole = ref<boolean>(false)
const admin2Role = ref<boolean>(false)
const adminRole = ref<boolean>(false)
const oligarchRole = ref<boolean>(false)
const fetchroleUser = async (keycloak: any) => {
// console.log(keycloak);
if (keycloak != null) {
insignia1Role.value = await keycloak.includes("insignia1");
insignia2Role.value = await keycloak.includes("insignia2");
caregiverRole.value = await keycloak.includes("caregiver");
chairmanRole.value = await keycloak.includes("chairman");
commanderRole.value = await keycloak.includes("commander");
admin2Role.value = await keycloak.includes("admin2");
adminRole.value = await keycloak.includes("admin");
oligarchRole.value = await keycloak.includes("oligarch");
}
}
return {
fetchroleUser,
insignia1Role,
insignia2Role,
caregiverRole,
chairmanRole,
commanderRole,
admin2Role,
adminRole,
};
});

View file

@ -20,6 +20,7 @@ import {
tabList,
tabListPlacement,
} from "../interface/request/main/main";
import { useroleUserDataStore } from "@/stores/roleUser";
const { setVerticalScrollPosition, getVerticalScrollPosition } = scroll;
const store = useDataStore();
@ -35,6 +36,8 @@ const {
messageError,
date2Thai,
} = mixin;
const DataStore = useroleUserDataStore();
const { fetchroleUser } = DataStore;
const $q = useQuasar();
const { tabData, loader } = storeToRefs(store);
@ -211,7 +214,8 @@ const activeBtn = () => {
* งจ boolean งตอง set
*/
onMounted(async () => {
await getDataNotification();
await fetchroleUser(keycloak.tokenParsed.role);
await getDataNotification();
myEventHandler(null, false);
window.addEventListener("resize", (e: any) => {
myEventHandler(e, true);
@ -266,9 +270,11 @@ const myEventHandler = (e: any, setSCroll: boolean) => {
*/
const activeMenu = (path: string) => {
if (path == "dashboard" && route.fullPath == "/") return true;
if (path == "registry" && route.fullPath == "/registry-employee") return false;
if (path == "registry" && route.fullPath.includes(`/registry-employee/edit`)) return false;
if (path == "registry" && route.fullPath == "/registry-employee")
return false;
if (path == "registry" && route.fullPath.includes(`/registry-employee/edit`))
return false;
if (path == "registry" && route.fullPath == "/") return false;
// if (path != "registry" && path == "registryEmployee" && route.fullPath == "/registryEmployee") return true;
const bool = route.fullPath.includes(`/${path}`);