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.
@@ -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
- let check_user_on_list = this.merchant_slot.rate_list.includes(this.user_info.uid)
180
- if (!check_user_on_list)
179
+ if (this.user_info && !(this.user_info.active_slot))
181
180
  {
182
- this.is_rating_dialog = true;
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
@@ -48,7 +48,7 @@ export default
48
48
  filters: { },
49
49
  data:() =>(
50
50
  {
51
- slide:1,
51
+ slide: 0,
52
52
  banner_id:'',
53
53
  banner_cover_photo: '',
54
54
  banner_pictures: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.606",
3
+ "version": "1.2.607",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {