ปรับปฎิทิน

This commit is contained in:
setthawutttty 2023-12-07 15:14:58 +07:00
parent bc6c78c0a6
commit 8500d25a5a
5 changed files with 374 additions and 343 deletions

View file

@ -224,7 +224,6 @@ function cancelInvestigate() {
/** ฟังชั่น ยุติเรื่อง*/
function confirmEndInvestigate() {
console.log("sent");
showLoader();
http
.get(config.API.disciplinaryReject(id.value))
@ -242,7 +241,6 @@ function confirmEndInvestigate() {
/** ฟังชั่น ยกเลิกการยุติเรื่อง*/
function confirmCancelInvestigate() {
console.log("sent");
showLoader();
http
.get(config.API.disciplinaryResume(id.value))
@ -307,7 +305,6 @@ const fileListObjComplaint = reactive<ArrayFileList>({
});
function emitPerson(data: PersonsArray[]) {
console.log(data);
const dataMapId = data.map((item: PersonsArray) => item.id);
showLoader();
http
@ -376,6 +373,7 @@ const dataInvestigatefacts = reactive<FormInvestigateFact>({
respondentType: "",
organizationId: "",
persons: [],
investigationExtendHistory:[]
});
</script>