|
@@ -97,20 +97,20 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
lvyue() {
|
|
|
- this.$api.msg('你没有权限使用该功能!');
|
|
|
+ this.checkReject();
|
|
|
},
|
|
|
zhonghe() {
|
|
|
- this.$api.msg('你没有权限使用该功能!');
|
|
|
+ this.checkReject();
|
|
|
},
|
|
|
huodong() {
|
|
|
- this.$api.msg('你没有权限使用该功能!');
|
|
|
+ this.checkReject();
|
|
|
},
|
|
|
useClick() {
|
|
|
this.$api.href('/pages/usercenter/question/question');
|
|
|
// this.$api.msg('稍后展示')
|
|
|
},
|
|
|
shangcheng(){
|
|
|
- this.$api.msg('你没有权限使用该功能!');
|
|
|
+ this.checkReject();
|
|
|
},
|
|
|
tabChange(index) {
|
|
|
console.log(index);
|
|
@@ -131,6 +131,22 @@ export default {
|
|
|
default:
|
|
|
return;
|
|
|
}
|
|
|
+ },
|
|
|
+ checkReject(){
|
|
|
+ if(!this.$store.state.hasLogin){
|
|
|
+ this.$api.msg('请先登录');
|
|
|
+ setTimeout(i=>{
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/login/loginType',
|
|
|
+ fail:function(err){
|
|
|
+ console.log(err)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },2000);
|
|
|
+ return;
|
|
|
+ }else{
|
|
|
+ this.$api.msg('你没有权限使用该功能!');
|
|
|
+ };
|
|
|
}
|
|
|
}
|
|
|
};
|