geer-builder 1.2.756 → 1.2.757
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/GNoSlot.vue +4 -12
- package/package.json +1 -1
package/GNoSlot.vue
CHANGED
|
@@ -11,16 +11,7 @@
|
|
|
11
11
|
</q-btn>
|
|
12
12
|
</div>
|
|
13
13
|
</g-card>
|
|
14
|
-
<g-card class="q-pa-lg" v-if="is_enable_refresh || is_no_code">
|
|
15
|
-
<div class="q-mb-md message">We have detected that you don't have a <b>slot</b> yet.</div>
|
|
16
|
-
<div>
|
|
17
|
-
<q-btn @click="$emit('refreshPage')" color="primary" unelevated>
|
|
18
|
-
<q-icon name="fa fa-plus" size="12px" class="q-mr-sm"></q-icon>
|
|
19
|
-
Refresh Page
|
|
20
|
-
</q-btn>
|
|
21
|
-
</div>
|
|
22
|
-
</g-card>
|
|
23
|
-
<g-card class="q-pa-lg" v-if="is_enable_refresh || is_no_code">
|
|
14
|
+
<g-card class="q-pa-lg" v-else-if="is_enable_refresh || is_no_code">
|
|
24
15
|
<div class="q-mb-md message">We have detected that you don't have a <b>slot</b> yet.</div>
|
|
25
16
|
<div>
|
|
26
17
|
<q-btn @click="$emit('refreshPage')" color="primary" unelevated>
|
|
@@ -65,7 +56,7 @@
|
|
|
65
56
|
</g-card>
|
|
66
57
|
</div>
|
|
67
58
|
<q-dialog :maximized="$q.platform.is.mobile" transition-show="slide-up" transition-hide="slide-down" v-model="is_open_add_slot_dialog">
|
|
68
|
-
<add-slot-dialog :code="code" @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
59
|
+
<add-slot-dialog :is_heartzone="is_heartzone" :code="code" @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
69
60
|
</q-dialog>
|
|
70
61
|
</div>
|
|
71
62
|
<q-dialog v-model="is_beneficiary_dialog_open">
|
|
@@ -106,7 +97,8 @@ export default
|
|
|
106
97
|
},
|
|
107
98
|
props:
|
|
108
99
|
{
|
|
109
|
-
is_enable_refresh:Boolean
|
|
100
|
+
is_enable_refresh:Boolean,
|
|
101
|
+
is_heartzone:Boolean
|
|
110
102
|
},
|
|
111
103
|
methods:
|
|
112
104
|
{
|