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