Merge branch 'oat_dev' into develop
This commit is contained in:
commit
acafc6c9c0
6 changed files with 65 additions and 3 deletions
49
src/components/03_customer-management/BasicInformation.vue
Normal file
49
src/components/03_customer-management/BasicInformation.vue
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue';
|
||||||
|
const thaiName = ref<string>('');
|
||||||
|
const EngName = ref<string>('');
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
title?: string;
|
||||||
|
dense?: boolean;
|
||||||
|
outlined?: boolean;
|
||||||
|
readonly?: boolean;
|
||||||
|
separator?: boolean;
|
||||||
|
}>();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="col-3 app-text-muted">
|
||||||
|
• {{ $t(`formDialogTitleInformation`) }}
|
||||||
|
</div>
|
||||||
|
<div class="col-9 row q-col-gutter-md">
|
||||||
|
<q-input
|
||||||
|
:dense="dense"
|
||||||
|
:outlined="!readonly"
|
||||||
|
:readonly="readonly"
|
||||||
|
:borderless="readonly"
|
||||||
|
hide-bottom-space
|
||||||
|
class="col-6"
|
||||||
|
:label="$t('corporationThaiName')"
|
||||||
|
v-model="thaiName"
|
||||||
|
/>
|
||||||
|
<q-input
|
||||||
|
:dense="dense"
|
||||||
|
:outlined="!readonly"
|
||||||
|
:readonly="readonly"
|
||||||
|
:borderless="readonly"
|
||||||
|
hide-bottom-space
|
||||||
|
class="col-6"
|
||||||
|
:label="$t('corporationEnglishName')"
|
||||||
|
v-model="EngName"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<q-separator
|
||||||
|
v-if="separator"
|
||||||
|
class="col-12 q-mt-xl q-mb-md"
|
||||||
|
style="padding-block: 0.5px"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
||||||
4
src/i18n/en-US/employer-dialog.ts
Normal file
4
src/i18n/en-US/employer-dialog.ts
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
export default {
|
||||||
|
corporationThaiName: 'Corporation ThaiName',
|
||||||
|
corporationEnglishName: 'Corporation EnglishName',
|
||||||
|
};
|
||||||
|
|
@ -7,7 +7,7 @@ import user from './user';
|
||||||
import formDialog from './form-dialog';
|
import formDialog from './form-dialog';
|
||||||
import status from './status';
|
import status from './status';
|
||||||
import customerMainPage from './customer-main-page';
|
import customerMainPage from './customer-main-page';
|
||||||
|
import employerDialog from './employer-dialog';
|
||||||
export default {
|
export default {
|
||||||
ok: 'Confirm',
|
ok: 'Confirm',
|
||||||
agree: 'Agree',
|
agree: 'Agree',
|
||||||
|
|
@ -42,4 +42,5 @@ export default {
|
||||||
...personnelMainPage,
|
...personnelMainPage,
|
||||||
...formDialog,
|
...formDialog,
|
||||||
...customerMainPage,
|
...customerMainPage,
|
||||||
|
...employerDialog,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
4
src/i18n/th-th/employer-dialog.ts
Normal file
4
src/i18n/th-th/employer-dialog.ts
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
export default {
|
||||||
|
corporationThaiName: 'ชื่อ บริษัท/นิติบุคคล ภาษาไทย',
|
||||||
|
corporationEnglishName: 'ชื่อ บริษัท/นิติบุคคล ภาษาอังกฤษ',
|
||||||
|
};
|
||||||
|
|
@ -7,7 +7,7 @@ import branch from './branch';
|
||||||
import user from './user';
|
import user from './user';
|
||||||
import formDialog from './form-dialog';
|
import formDialog from './form-dialog';
|
||||||
import status from './status';
|
import status from './status';
|
||||||
|
import employerDialog from './employer-dialog';
|
||||||
export default {
|
export default {
|
||||||
ok: 'ยืนยัน',
|
ok: 'ยืนยัน',
|
||||||
agree: 'ตกลง',
|
agree: 'ตกลง',
|
||||||
|
|
@ -42,4 +42,5 @@ export default {
|
||||||
...personnelMainPage,
|
...personnelMainPage,
|
||||||
...formDialog,
|
...formDialog,
|
||||||
...customerMainPage,
|
...customerMainPage,
|
||||||
|
...employerDialog,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import AppBox from 'components/app/AppBox.vue';
|
||||||
import ItemCard from 'src/components/ItemCard.vue';
|
import ItemCard from 'src/components/ItemCard.vue';
|
||||||
import FormDialog from 'src/components/FormDialog.vue';
|
import FormDialog from 'src/components/FormDialog.vue';
|
||||||
import ProfileUpload from 'src/components/ProfileUpload.vue';
|
import ProfileUpload from 'src/components/ProfileUpload.vue';
|
||||||
|
import BasicInformation from 'src/components/03_customer-management/BasicInformation.vue';
|
||||||
|
|
||||||
const statusToggle = ref<boolean>(false);
|
const statusToggle = ref<boolean>(false);
|
||||||
const profileSubmit = ref<boolean>(false);
|
const profileSubmit = ref<boolean>(false);
|
||||||
|
|
@ -192,7 +193,9 @@ function openDialogInputForm() {
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #information>asdasdsa</template>
|
<template #information>
|
||||||
|
<BasicInformation dense outlined separator />
|
||||||
|
</template>
|
||||||
</FormDialog>
|
</FormDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue