2024-04-02 17:47:32 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import AppBox from 'components/app/AppBox.vue';
|
2024-04-03 15:23:59 +07:00
|
|
|
import BtnAddComponet from 'components/01_branch-management/BtnAddComponet.vue';
|
|
|
|
|
import StatCardComponet from 'components/01_branch-management/StatCardComponet.vue';
|
|
|
|
|
import TooltipComponet from 'src/components/TooltipComponet.vue';
|
2024-04-02 17:47:32 +07:00
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<div class="column">
|
2024-04-03 14:55:37 +07:00
|
|
|
<div class="row text-h6 text-weight-bold q-mb-md">
|
|
|
|
|
{{ $t('branchManagement') }}
|
|
|
|
|
</div>
|
2024-04-02 17:47:32 +07:00
|
|
|
|
2024-04-03 15:23:59 +07:00
|
|
|
<app-box>
|
|
|
|
|
<stat-card-componet amount="10" label="สาขาใหญ่" />
|
|
|
|
|
</app-box>
|
|
|
|
|
|
2024-04-02 17:47:32 +07:00
|
|
|
<app-box bordered style="width: 100%; height: 500px">
|
|
|
|
|
<div class="column" style="height: 100%">
|
|
|
|
|
<div class="col-1 self-end">
|
2024-04-03 14:24:17 +07:00
|
|
|
<div class="row">
|
2024-04-03 15:23:59 +07:00
|
|
|
<tooltip-componet imgSrc="img-table-" />
|
2024-04-03 14:24:17 +07:00
|
|
|
</div>
|
2024-04-02 17:47:32 +07:00
|
|
|
</div>
|
2024-04-03 14:24:17 +07:00
|
|
|
|
2024-04-02 17:47:32 +07:00
|
|
|
<div
|
|
|
|
|
class="col test self-center"
|
|
|
|
|
style="display: flex; align-items: center"
|
|
|
|
|
>
|
|
|
|
|
<btn-add-componet
|
|
|
|
|
:label="'สร้างสำนักงานใหญ่'"
|
|
|
|
|
@trigger="
|
|
|
|
|
() => {
|
|
|
|
|
console.log('test');
|
|
|
|
|
}
|
|
|
|
|
"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</app-box>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2024-04-03 15:23:59 +07:00
|
|
|
<style scoped></style>
|