You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
360 B

<template>
<div></div>
</template>
<script>
2 months ago
//角色判断
export default {
name: "roleJudge",
data() {
2 months ago
return {};
},
created(){
if(this.$auth.hasRoleOr(["admin", "common"])){//admin,政务
this.$router.push({path:"/statistics"})
}else{
//企业人员
this.$router.push({path:"/tongjifenxi"})
}
}
};
</script>