สอบคัดเลือกถ้าเลือกค่าชำระเป็น0 เคลียรค่า เลือกวิธีการชำระเงิน
This commit is contained in:
parent
0b9504e589
commit
ce11307a77
1 changed files with 11 additions and 3 deletions
|
|
@ -469,7 +469,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 q-mt-lg" v-if="announcementExam">
|
<div class="col-12 q-mt-lg" v-if="announcementExam">
|
||||||
<div class="text-bold text-subtitle2 q-pb-md">
|
<div class="text-bold text-subtitle2 q-pb-md">
|
||||||
เลือกวีธีการชำระเงิน
|
เลือกวิธีการชำระเงิน
|
||||||
</div>
|
</div>
|
||||||
<div class="row col-12 q-gutter-y-md q-mb-md">
|
<div class="row col-12 q-gutter-y-md q-mb-md">
|
||||||
<q-list dense bordered class="col-12 rounded-borders">
|
<q-list dense bordered class="col-12 rounded-borders">
|
||||||
|
|
@ -479,6 +479,7 @@
|
||||||
val="payment1"
|
val="payment1"
|
||||||
color="blue"
|
color="blue"
|
||||||
class="q-mr-md"
|
class="q-mr-md"
|
||||||
|
:disable="fee <= 0"
|
||||||
/>
|
/>
|
||||||
<q-item-section avatar>
|
<q-item-section avatar>
|
||||||
<q-avatar size="28px">
|
<q-avatar size="28px">
|
||||||
|
|
@ -500,6 +501,7 @@
|
||||||
val="payment2"
|
val="payment2"
|
||||||
color="blue"
|
color="blue"
|
||||||
class="q-mr-md"
|
class="q-mr-md"
|
||||||
|
:disable="fee <= 0"
|
||||||
/>
|
/>
|
||||||
<q-item-section avatar>
|
<q-item-section avatar>
|
||||||
<q-icon name="mdi-cash" color="positive" size="33px" />
|
<q-icon name="mdi-cash" color="positive" size="33px" />
|
||||||
|
|
@ -1129,14 +1131,20 @@ const columnsPosition = ref<QTableProps["columns"]>([
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
watch(organizationShortName, (count: DataOption, prevCount: DataOption) => {
|
watch(organizationShortName, (count: any, prevCount: any) => {
|
||||||
organizationNameOptions.value = [];
|
organizationNameOptions.value = [];
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(organizationName, (count: DataOption, prevCount: DataOption) => {
|
watch(organizationName, (count: any, prevCount: any) => {
|
||||||
positionPathOptions.value = [];
|
positionPathOptions.value = [];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
watch(fee, (count: any, prevCount: any) => {
|
||||||
|
if (fee.value <= 0) {
|
||||||
|
pay.value = "";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
hideLoader();
|
hideLoader();
|
||||||
if (route.params.id != undefined) {
|
if (route.params.id != undefined) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue