Compare commits

..

No commits in common. "7deec1a5c683f34c93881c953c2fd6ca56d1edb4" and "aa90e8b9db8ce8e617ef3c0f7b4fe9dcfefaaf1c" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View file

@ -57,11 +57,6 @@ const formMain = reactive<FormMain>({
}, //
absent: 0, //
age: 0, //
govAgeBkk:{
year: 0,
month: 0,
day: 0,
}
});
const modalEdit = ref<boolean>(false); // popup
@ -168,7 +163,6 @@ async function getData() {
formMain.ageAll = data.govAge;
formMain.absent = data.govAgeAbsent;
formMain.age = data.govAgePlus;
formMain.govAgeBkk = data.govAgeBkk;
})
.catch((e) => {
messageError($q, e);
@ -463,21 +457,6 @@ onMounted(() => {
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6">
<div class="row">
<div class="col-12 col-sm-12 col-md-5">
<span class="text-grey-6 text-weight-medium">อายราชการ (กทม.)</span>
</div>
<div class="col-12 col-sm-12 col-md-7">
<span>{{
formMain.govAgeBkk
? `${formMain.govAgeBkk.year} ปี ${formMain.govAgeBkk.month} เดือน ${formMain.govAgeBkk.day} วัน`
: "-"
}}</span>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6">
<div class="row">
<div class="col-12 col-sm-12 col-md-5">

View file

@ -14,7 +14,6 @@ interface FormMain {
reasonSameDate: string;
retireDate: any;
ageAll: GovAgeForm;
govAgeBkk: GovAgeForm;
absent: number;
age: number;
[key: string]: any;