geer-builder 1.2.929 → 1.2.930
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/mixins/global_mixins.js +2 -0
- package/package.json +1 -1
package/mixins/global_mixins.js
CHANGED
|
@@ -161,6 +161,7 @@ export default
|
|
|
161
161
|
async $_logout()
|
|
162
162
|
{
|
|
163
163
|
sessionStorage.removeItem('referral_slot_code');
|
|
164
|
+
sessionStorage.removeItem('reseller_slot_code');
|
|
164
165
|
this.$router.push({ name: 'front_home' });
|
|
165
166
|
const AccountClass = new FAccountClass();
|
|
166
167
|
AccountClass.signOut();
|
|
@@ -168,6 +169,7 @@ export default
|
|
|
168
169
|
async $_logoutFrontLogin()
|
|
169
170
|
{
|
|
170
171
|
sessionStorage.removeItem('referral_slot_code');
|
|
172
|
+
sessionStorage.removeItem('reseller_slot_code');
|
|
171
173
|
this.$router.push({ name: 'front_login' });
|
|
172
174
|
const AccountClass = new FAccountClass();
|
|
173
175
|
AccountClass.signOut();
|