geer-builder 1.2.652 → 1.2.653
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GGcashRequest.vue +8 -5
- package/package.json +1 -1
package/GGcashRequest.vue
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="g-gcash-request">
|
|
3
|
-
<div
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<div class="
|
|
3
|
+
<div v-show="!(this.user_info && this.user_info.hasOwnProperty('active_slot'))">* Only for member which have Active Slot.</div>
|
|
4
|
+
<div v-show="this.user_info && this.user_info.hasOwnProperty('active_slot')">
|
|
5
|
+
<div class="message-output q-mb-lg" v-if="!(this.user_info.hasOwnProperty('verified') && this.user_info.verified === true)">
|
|
6
|
+
<div class="verification-required">
|
|
7
|
+
<div class="title">Verification Required</div>
|
|
8
|
+
<div class="desc">You need to <b>GET VERIFIED</b> to transact with this module. Please click the <b>"GET VERIFIED"</b> button.</div>
|
|
9
|
+
</div>
|
|
10
|
+
<q-btn class="q-mt-lg" @click="is_g_user_verification_dialog_open = true" label="Get Verified"/>
|
|
7
11
|
</div>
|
|
8
|
-
<q-btn class="q-mt-lg" @click="is_g_user_verification_dialog_open = true" label="Get Verified"/>
|
|
9
12
|
</div>
|
|
10
13
|
<q-form @submit.prevent="onSubmit">
|
|
11
14
|
<div class="input-wrapper">
|