feat: menu agencies (#65)

* feat: agencies => add agencies menu

---------

Co-authored-by: Methapon Metanipat <methapon@frappet.com>
This commit is contained in:
puriphatt 2024-11-08 13:11:42 +07:00 committed by GitHub
parent f6479cc72d
commit b87e15301f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 1305 additions and 18 deletions

View file

@ -38,12 +38,16 @@ const workplace = defineModel<string>('workplace', { default: '' });
const workplaceEN = defineModel<string>('workplaceEn', { default: '' });
const address = defineModel('address', { default: '' });
const addressEN = defineModel('addressEn', { default: '' });
const street = defineModel('street', { default: '' });
const streetEN = defineModel('streetEn', { default: '' });
const moo = defineModel('moo', { default: '' });
const mooEN = defineModel('mooEn', { default: '' });
const soi = defineModel('soi', { default: '' });
const soiEN = defineModel('soiEn', { default: '' });
const street = defineModel<string | null | undefined>('street', {
default: '',
});
const streetEN = defineModel<string | null | undefined>('streetEn', {
default: '',
});
const moo = defineModel<string | null | undefined>('moo', { default: '' });
const mooEN = defineModel<string | null | undefined>('mooEn', { default: '' });
const soi = defineModel<string | null | undefined>('soi', { default: '' });
const soiEN = defineModel<string | null | undefined>('soiEn', { default: '' });
const provinceId = defineModel<string | null | undefined>('provinceId');
const districtId = defineModel<string | null | undefined>('districtId');
const subDistrictId = defineModel<string | null | undefined>('subDistrictId');