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