mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
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:
@@ -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 = {
|
||||
|
||||
+2
-2
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user