fixing
This commit is contained in:
parent
f4a85b3b3a
commit
6fd49f4084
4 changed files with 11 additions and 9 deletions
|
|
@ -10,7 +10,6 @@ import config from "@/app.config";
|
|||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
import DialogPopupReason from "@/components/Dialogs/PopupReason.vue";
|
||||
import PopupPersonal from "@/components/Dialogs/PopupPersonalNew.vue";
|
||||
import { format } from "path";
|
||||
|
||||
const modalPersonal = ref<boolean>(false);
|
||||
const personId = ref<string>("");
|
||||
|
|
@ -644,7 +643,7 @@ function updatemodalPersonal(modal: boolean) {
|
|||
>{{ props.row.organizationOrganization }}</q-td
|
||||
> -->
|
||||
<q-td key="position" :props="props">{{
|
||||
props.row.position ? props.row.position:'-'
|
||||
props.row.position ? props.row.position : "-"
|
||||
}}</q-td>
|
||||
<q-td key="positionType" :props="props"
|
||||
>{{ props.row.positionType ? props.row.positionType : "-" }}
|
||||
|
|
@ -656,7 +655,7 @@ function updatemodalPersonal(modal: boolean) {
|
|||
</q-td>
|
||||
|
||||
<q-td key="positionNumber" :props="props">{{
|
||||
props.row.positionNumber ? props.row.positionNumber:'-'
|
||||
props.row.positionNumber ? props.row.positionNumber : "-"
|
||||
}}</q-td>
|
||||
<!-- <q-td key="organizationAgency" :props="props">{{
|
||||
props.row.organizationAgency
|
||||
|
|
@ -665,7 +664,7 @@ function updatemodalPersonal(modal: boolean) {
|
|||
props.row.organizationGovernmentAgency
|
||||
}}</q-td> -->
|
||||
<q-td class="table_ellipsis" key="organization" :props="props">{{
|
||||
props.row.organization ? props.row.organization:'-'
|
||||
props.row.organization ? props.row.organization : "-"
|
||||
}}</q-td>
|
||||
<!-- <q-td class="table_ellipsis" key="bureau" :props="props">{{
|
||||
props.row.bureau
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue