Merge branch 'develop' of https://github.com/Frappet/bma-ehr-frontend into develop
This commit is contained in:
commit
b8d0a5230c
11 changed files with 1997 additions and 326 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
|
|
@ -2,6 +2,7 @@ import type { zipCodeOption } from "../../components/exams_other/profileType";
|
|||
interface DataOption {
|
||||
id: number | string;
|
||||
name: string;
|
||||
disable?: boolean;
|
||||
}
|
||||
|
||||
interface Pagination {
|
||||
|
|
@ -32,5 +33,10 @@ interface AddressOps {
|
|||
}
|
||||
|
||||
|
||||
interface treeTab {
|
||||
id: string;
|
||||
label: string;
|
||||
children: treeTab[];
|
||||
}
|
||||
|
||||
export type { DataOption, InformationOps , AddressOps, Pagination ,EduOps };
|
||||
export type { DataOption, treeTab, InformationOps, AddressOps, Pagination, EduOps };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue