feat: about component

This commit is contained in:
oat_dev 2024-04-23 13:51:32 +07:00
parent 2f1c46b9db
commit a147dc4b4c
6 changed files with 186 additions and 0 deletions

View file

@ -19,4 +19,15 @@ export default {
payDay: 'Payday',
payRate: 'Daily wage rate',
salesPerson: 'Salesperson',
// เกี่ยวกับ About
about: 'About',
branchCode: 'Branch Code',
legalEntityCode: 'Legal Entity Code',
taxNo: 'Tax Identification Number',
customerName: 'Customer Thai Name',
customerEnglishName: 'Customer English Name',
registerDate: 'Register Date',
authorizedCapital: 'Registered Capital',
registerName: 'RegisterName',
};

View file

@ -8,6 +8,7 @@ import formDialog from './form-dialog';
import status from './status';
import customerMainPage from './customer-main-page';
import employerDialog from './employer-dialog';
import otherDocument from './other-document';
export default {
ok: 'Confirm',
agree: 'Agree',
@ -43,4 +44,5 @@ export default {
...formDialog,
...customerMainPage,
...employerDialog,
...otherDocument,
};

View file

@ -27,4 +27,15 @@ export default {
payRate: 'อัตราค่าจ้าง/วัน',
salesPerson: 'พนักงานขาย',
// เกี่ยวกับ
about: 'เกี่ยวกับ',
branchCode: 'รหัสสาขา',
legalEntityCode: 'รหัสนิติบุคคล',
taxNo: 'เลขประจำตัวผู้เสียภาษี',
customerName: 'ชื่อลูกค้า ภาษาไทย',
customerEnglishName: 'ชื่อลูกค้า ภาษาอังกฤษ',
registerDate: 'จดทะเบียนเมื่อ',
authorizedCapital: 'ทุนจดทะเบียน',
registerName: 'จดทะเบียนชื่อ',
};

View file

@ -8,6 +8,7 @@ import user from './user';
import formDialog from './form-dialog';
import status from './status';
import employerDialog from './employer-dialog';
import otherDocument from './other-document';
export default {
ok: 'ยืนยัน',
agree: 'ตกลง',
@ -43,4 +44,5 @@ export default {
...formDialog,
...customerMainPage,
...employerDialog,
...otherDocument,
};