Ver Fonte

缓存用户在当前选择的身份

zhanghui há 1 ano atrás
pai
commit
37990bd16b
3 ficheiros alterados com 16 adições e 3 exclusões
  1. 11 3
      pages/user/index.vue
  2. 1 0
      store/getters.js
  3. 4 0
      store/modules/app.js

+ 11 - 3
pages/user/index.vue

@@ -392,8 +392,10 @@ import {
 } from '@/libs/login.js';
 import {
 	mapState,
-	mapGetters
+	mapGetters,
+	mapMutations
 } from "vuex";
+
 // #ifdef H5
 import Auth from '@/libs/wechat';
 // #endif
@@ -410,7 +412,8 @@ export default {
 	computed: {
 		...mapGetters({
 			cartNum: 'cartNum',
-			isLogin: 'isLogin'
+			isLogin: 'isLogin',
+			newCurrentRole:'newCurrentRole'
 		})
 	},
 	filters: {
@@ -514,6 +517,7 @@ export default {
 		}
 	},
 	onLoad (option) {
+
 		// uni.hideTabBar()
 		let that = this;
 		// uni.navigateTo({
@@ -537,6 +541,7 @@ export default {
 		// }
 		// #ifdef MP
 		// 小程序静默授权
+
 		if (!this.$store.getters.isLogin) {
 			// Routine.getCode()
 			// 	.then(code => {
@@ -583,6 +588,8 @@ export default {
 		// #endif
 	},
 	onShow: function () {
+		this.currentRole=this.$store.getters.newCurrentRole
+		console.log(this.newCurrentRole)
 		this.grouponMngStatis();
 		let that = this;
 		// #ifdef APP-PLUS
@@ -603,7 +610,7 @@ export default {
 		this.onLoadFun();
 	},
 	methods: {
-
+		...mapMutations(["setNewCurrentRole"]),
 		grouponMngStatis(){
 			grouponMngStatis().then(res => {
 				this.grouponStatis = res.data
@@ -637,6 +644,7 @@ export default {
 			},
 		changeRole () {
 			this.currentRole = this.roleSwitch ? 'leader' : 'employees'
+			this.setNewCurrentRole(this.currentRole);
 		},
 		// 发布团购
 		goGroupbuying (url) {

+ 1 - 0
store/getters.js

@@ -1,6 +1,7 @@
 
 
 export default {
+	newCurrentRole: state => state.app.newCurrentRole,
   token: state => state.app.token,
   isLogin: state => !!state.app.token,
   selectAddr: state => state.app.selectAddr,

+ 4 - 0
store/modules/app.js

@@ -14,6 +14,7 @@ import {
 } from '../../config/cache';
 
 const state = {
+	newCurrentRole:'employees',
 	token: Cache.get(LOGIN_STATUS) || false,
 	backgroundColor: "#fff",
 	userInfo: {},
@@ -26,6 +27,9 @@ const state = {
 };
 
 const mutations = {
+	setNewCurrentRole(state,val){
+		state.newCurrentRole = val;
+	},
 	SETSELECTADDR(state,val){
 		state.selectAddr = val;
 	},