updated
This commit is contained in:
parent
ba728ea000
commit
ee9442702f
11 changed files with 212 additions and 88 deletions
|
|
@ -63,10 +63,11 @@ const dataInvestigatefacts = reactive<FormInvestigateFact>({
|
|||
documentFile: null,
|
||||
respondentType: "",
|
||||
organizationId: "",
|
||||
organization: "",
|
||||
persons: [],
|
||||
investigationExtendHistory: [],
|
||||
isDisciplinary:false,
|
||||
isAncestorDNA:false
|
||||
isDisciplinary: false,
|
||||
isAncestorDNA: false,
|
||||
});
|
||||
|
||||
const personObjComplaint = reactive<ArrayPerson>({
|
||||
|
|
@ -92,7 +93,9 @@ const dataComplaints = reactive<FormDataComplaint>({
|
|||
id: "",
|
||||
respondentType: "",
|
||||
organizationId: "",
|
||||
organization: "",
|
||||
consideredAgency: "",
|
||||
consideredAgencyId: "",
|
||||
title: "",
|
||||
description: "",
|
||||
dateReceived: null,
|
||||
|
|
@ -197,6 +200,8 @@ async function fetchDetailInvestigate() {
|
|||
dataList.investigationExtendStatus;
|
||||
dataInvestigatefacts.investigationDaysExtend =
|
||||
dataList.investigationDaysExtend;
|
||||
dataInvestigatefacts.organizationId = dataList.organizationId;
|
||||
dataInvestigatefacts.organization = dataList.organization;
|
||||
})
|
||||
.catch((err) => {
|
||||
messageError($q, err);
|
||||
|
|
@ -216,7 +221,9 @@ async function fetchDetailComplaints() {
|
|||
dataComplaints.id = dataList.id;
|
||||
dataComplaints.respondentType = dataList.respondentType;
|
||||
dataComplaints.organizationId = dataList.organizationId;
|
||||
dataComplaints.organization = dataList.organization;
|
||||
dataComplaints.consideredAgency = dataList.consideredAgency;
|
||||
dataComplaints.consideredAgencyId = dataList.consideredAgencyId;
|
||||
dataComplaints.title = dataList.title;
|
||||
dataComplaints.description = dataList.description;
|
||||
dataComplaints.dateReceived = dataList.dateReceived;
|
||||
|
|
@ -263,6 +270,7 @@ onMounted(async () => {
|
|||
await fetchDetailResult();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="col-xs-12 col-sm-12 col-md-11">
|
||||
<div class="toptitle col-12 row items-center">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue