คอมเม้นหน่วยงานที่สอบคัดเลือก
This commit is contained in:
parent
edfdd82a5d
commit
6ad6b4bcab
1 changed files with 14 additions and 12 deletions
|
|
@ -316,7 +316,7 @@
|
|||
></selector>
|
||||
</div> -->
|
||||
<div class="col-12" v-if="announcementExam">
|
||||
<div class="row q-col-gutter-x-sm">
|
||||
<!-- <div class="row q-col-gutter-x-sm">
|
||||
<div class="col-xs-12 col-sm-6 col-md-6">
|
||||
<selector
|
||||
outlined
|
||||
|
|
@ -347,7 +347,7 @@
|
|||
@update:model-value="(value:any) => selectOrganization(value)"
|
||||
></selector>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="col-12 q-mb-sm">
|
||||
<q-separator size="5px" color="grey-2" />
|
||||
</div>
|
||||
|
|
@ -1049,7 +1049,7 @@ const filterPayment = ref<string>(""); //search data table
|
|||
const filterPosition = ref<string>(""); //search data table
|
||||
const edit = ref<boolean>(false);
|
||||
const rowsPayment = ref<ResponsePayment[]>([]);
|
||||
const rowsPosition = ref<ResponsePosition[]>([]);
|
||||
const rowsPosition = ref<any>([]);
|
||||
const visibleColumnsPayment = ref<String[]>([
|
||||
"accountNumber",
|
||||
"bankName",
|
||||
|
|
@ -1152,16 +1152,18 @@ onMounted(async () => {
|
|||
id.value = route.params.id.toString();
|
||||
await fetchData();
|
||||
} else {
|
||||
pay.value = "";
|
||||
edit.value = false;
|
||||
}
|
||||
await fetchOrganizationShortName();
|
||||
if (
|
||||
organizationShortName.value != null &&
|
||||
organizationShortName.value.id != null
|
||||
)
|
||||
await fetchOrganizationOrganization(organizationShortName.value.id);
|
||||
if (organizationName.value != null && organizationName.value.id != null)
|
||||
await fetchPositionPath(organizationName.value.id);
|
||||
// await fetchOrganizationShortName();
|
||||
// if (
|
||||
// organizationShortName.value != null &&
|
||||
// organizationShortName.value.id != null
|
||||
// )
|
||||
// await fetchOrganizationOrganization(organizationShortName.value.id);
|
||||
// if (organizationName.value != null && organizationName.value.id != null)
|
||||
// await fetchPositionPath(organizationName.value.id);
|
||||
await fetchPositionPath("test");
|
||||
});
|
||||
|
||||
const clickBack = () => {
|
||||
|
|
@ -1575,7 +1577,7 @@ const clickAddPosition = () => {
|
|||
if (result) {
|
||||
rowsPosition.value.push({
|
||||
id: "00000000-0000-0000-0000-000000000000",
|
||||
position: { id: "", name: "" },
|
||||
position: null,
|
||||
type: { id: "normol", name: "ทั่วไป" },
|
||||
highDegree: false,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue