Merge branch 'develop' of https://github.com/Frappet/bma-ehr-frontend into develop
This commit is contained in:
commit
742ea2dc3a
4 changed files with 1167 additions and 139 deletions
|
|
@ -11,16 +11,14 @@ const close = async () => {
|
|||
};
|
||||
</script>
|
||||
<template>
|
||||
<q-toolbar class="header-main">
|
||||
<q-toolbar class="q-py-md">
|
||||
<q-toolbar-title class="header-text">{{ title }}</q-toolbar-title>
|
||||
<q-btn icon="close" unelevated round dense @click="close" style="color: #ff8080; background-color: #ffdede" />
|
||||
</q-toolbar>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.header-main {
|
||||
padding: 16px 0px 16px 27px;
|
||||
}
|
||||
|
||||
|
||||
.header-text {
|
||||
font-size: 18px;
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -103,7 +103,7 @@ const clickSave = async () => {
|
|||
<div class="col-3 header-sub-text">
|
||||
ที่อยู่
|
||||
</div>
|
||||
<div class="col-9 header-sub-text">
|
||||
<div class="col-9 sub-text">
|
||||
{{ props.getdetail.address }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -271,7 +271,6 @@ const clickSave = async () => {
|
|||
line-height: 150%;
|
||||
color: #818181;
|
||||
}
|
||||
|
||||
.sub-text {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,42 @@
|
|||
import type { zipCodeOption } from "../../components/exams_other/profileType";
|
||||
interface DataOption {
|
||||
id: number;
|
||||
name: string;
|
||||
id: number | string;
|
||||
name: string;
|
||||
disable?: boolean;
|
||||
}
|
||||
|
||||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface EduOps {
|
||||
levelOptions: DataOption[];
|
||||
positionPathOptions: DataOption[];
|
||||
}
|
||||
|
||||
interface InformationOps {
|
||||
prefixOps: DataOption[];
|
||||
genderOps: DataOption[];
|
||||
bloodOps: DataOption[];
|
||||
statusOps: DataOption[];
|
||||
religionOps: DataOption[];
|
||||
employeeClassOps: DataOption[];
|
||||
employeeTypeOps: DataOption[];
|
||||
}
|
||||
|
||||
interface AddressOps {
|
||||
provinceOps: DataOption[];
|
||||
districtOps: DataOption[];
|
||||
districtCOps: DataOption[];
|
||||
subdistrictOps: zipCodeOption[];
|
||||
subdistrictCOps: zipCodeOption[];
|
||||
}
|
||||
|
||||
|
||||
export type { DataOption };
|
||||
interface treeTab {
|
||||
id: string;
|
||||
label: string;
|
||||
children: treeTab[];
|
||||
}
|
||||
|
||||
export type { DataOption, treeTab, InformationOps, AddressOps, Pagination, EduOps };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue