geer-builder 1.2.606 → 1.2.607
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/GEcomStorePage.vue +11 -4
- package/GMerchantBanner.vue +1 -1
- package/package.json +1 -1
package/GEcomStorePage.vue
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<div class="active__status">Active {{timeSince( new Date(this.merchant_info.last_login_date.seconds * 1000 + this.merchant_info.last_login_date.nanoseconds/1000000))+" ago"}}</div>
|
|
13
13
|
</div>
|
|
14
14
|
</div>
|
|
15
|
-
<div class="button-holder" v-if="user_info">
|
|
15
|
+
<div class="button-holder" v-if="user_info && !(this.user_info.active_slot)">
|
|
16
16
|
<q-btn class="q-mr-sm hidden open-merchant-btn btn-color" @click="openMerchantPage()">
|
|
17
17
|
<q-icon size="14px" color="gray" class="q-mr-sm" name="fa fa-store"></q-icon>
|
|
18
18
|
View Page
|
|
@@ -176,10 +176,17 @@ export default {
|
|
|
176
176
|
}
|
|
177
177
|
if (this.merchant_slot.rate_list)
|
|
178
178
|
{
|
|
179
|
-
|
|
180
|
-
if (!check_user_on_list)
|
|
179
|
+
if (this.user_info && !(this.user_info.active_slot))
|
|
181
180
|
{
|
|
182
|
-
|
|
181
|
+
let check_user_on_list = this.merchant_slot.rate_list.includes(this.user_info.uid)
|
|
182
|
+
if (!check_user_on_list)
|
|
183
|
+
{
|
|
184
|
+
this.is_rating_dialog = true;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
else
|
|
188
|
+
{
|
|
189
|
+
this.is_rating_dialog = false;
|
|
183
190
|
}
|
|
184
191
|
}
|
|
185
192
|
else
|
package/GMerchantBanner.vue
CHANGED