Update: Vue 2 to Vue 3 with Typescript, node 14 to node 22, Jenkinsfile, Dockerfile, vapor.yml (Post PROD Deployment)

This commit is contained in:
Dillon Ngo
2026-06-08 19:42:42 +08:00
parent 7f66e616de
commit 1c393e86e2
2 changed files with 5 additions and 8 deletions
@@ -326,22 +326,19 @@ const parameters = ref({
const money = {
decimal: '.',
thousands: ',',
precision: 2,
masked: false
precision: 2
};
const weight = {
decimal: '.',
thousands: ',',
precision: 1,
masked: false
precision: 1
};
const integer = {
decimal: '',
thousands: '',
precision: 0,
masked: false
precision: 0
};
const rules = {
@@ -50,7 +50,7 @@
</div>
</div>
<modal-component type="paymentProofModal">
<payment-verification-form-component v-if="selected_id === item.id" :section="section" :data="{...item, id: item.payment_transaction.id}"></payment-verification-form-component>
<payment-verification-form-component v-if="selected_id === String(item.id)" :section="section" :data="{...item, id: item.payment_transaction.id}"></payment-verification-form-component>
</modal-component>
<div class="col-auto" v-if="item.payment_method == 1 && [1, 2].includes(item.payment_transaction.status)">
<div class="fs-10 all-caps">Payment Proof</div>
@@ -134,7 +134,7 @@ const request = useRequest();
const expanded = ref(false);
const selectedValue = ref(false);
const selected_id = ref('');
const item = ref<any>(props.data || {});
const item = ref<any>(props.data || {});
const isLoading = ref(false);
const pendingQueue = computed(() => queueStore.isInCompleteQueue(props.section));