fix(权限设置): 个人信息无权限禁用入口
--bug=1011779 --user=刘瑞斌 【通用功能】github#12050 非管理员用户,在主页点:个人信息,弹出空白页 https://www.tapd.cn/55049933/s/1129433 Closes #12050
This commit is contained in:
parent
23f01dfc91
commit
8d0d7bc2df
|
@ -5,7 +5,9 @@
|
||||||
</span>
|
</span>
|
||||||
<template v-slot:dropdown>
|
<template v-slot:dropdown>
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
<el-dropdown-item command="personal">{{ $t('commons.personal_information') }}</el-dropdown-item>
|
<el-dropdown-item command="personal" :disabled="checkPermissions()">
|
||||||
|
{{ $t('commons.personal_information') }}
|
||||||
|
</el-dropdown-item>
|
||||||
<el-dropdown-item command="about">{{ $t('commons.about_us') }} <i class="el-icon-info"/></el-dropdown-item>
|
<el-dropdown-item command="about">{{ $t('commons.about_us') }} <i class="el-icon-info"/></el-dropdown-item>
|
||||||
<el-dropdown-item command="help">{{ $t('commons.help_documentation') }}</el-dropdown-item>
|
<el-dropdown-item command="help">{{ $t('commons.help_documentation') }}</el-dropdown-item>
|
||||||
<el-dropdown-item command="ApiHelp">{{ $t('commons.api_help_documentation') }}</el-dropdown-item>
|
<el-dropdown-item command="ApiHelp">{{ $t('commons.api_help_documentation') }}</el-dropdown-item>
|
||||||
|
@ -16,28 +18,28 @@
|
||||||
<about-us ref="aboutUs"/>
|
<about-us ref="aboutUs"/>
|
||||||
<el-dialog :close-on-click-modal="false" width="80%"
|
<el-dialog :close-on-click-modal="false" width="80%"
|
||||||
:visible.sync="resVisible" class="api-import" destroy-on-close @close="closeDialog">
|
:visible.sync="resVisible" class="api-import" destroy-on-close @close="closeDialog">
|
||||||
<ms-person-router @closeDialog = "closeDialog"/>
|
<ms-person-router @closeDialog="closeDialog"/>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getCurrentUser} from "@/common/js/utils";
|
import {getCurrentUser, hasPermissions} from "@/common/js/utils";
|
||||||
import AboutUs from "./AboutUs";
|
import AboutUs from "./AboutUs";
|
||||||
import {logout} from "@/network/user";
|
import {logout} from "@/network/user";
|
||||||
|
|
||||||
import MsPersonRouter from "@/business/components/settings/components/PersonRouter"
|
import MsPersonRouter from "@/business/components/settings/components/PersonRouter";
|
||||||
|
|
||||||
const requireComponent = require.context('@/business/components/xpack/', true, /\.vue$/);
|
const requireComponent = require.context('@/business/components/xpack/', true, /\.vue$/);
|
||||||
const auth = requireComponent.keys().length > 0 ? requireComponent("./auth/Auth.vue") : {};
|
const auth = requireComponent.keys().length > 0 ? requireComponent("./auth/Auth.vue") : {};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "MsUser",
|
name: "MsUser",
|
||||||
components: {AboutUs,MsPersonRouter},
|
components: {AboutUs, MsPersonRouter},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
resVisible:false,
|
resVisible: false,
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
currentUser: () => {
|
currentUser: () => {
|
||||||
|
@ -52,7 +54,7 @@ export default {
|
||||||
switch (command) {
|
switch (command) {
|
||||||
case "personal":
|
case "personal":
|
||||||
// TODO 优化路由跳转,避免重复添加路由
|
// TODO 优化路由跳转,避免重复添加路由
|
||||||
// this.$router.push('/setting/personsetting').catch(error => error);
|
// this.$router.push('/setting/personsetting').catch(error => error);
|
||||||
this.resVisible = true;
|
this.resVisible = true;
|
||||||
break;
|
break;
|
||||||
case "logout":
|
case "logout":
|
||||||
|
@ -79,12 +81,18 @@ export default {
|
||||||
window.location.href = "/#/api/home";
|
window.location.href = "/#/api/home";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
closeDialog(){
|
closeDialog() {
|
||||||
this.resVisible = false;
|
this.resVisible = false;
|
||||||
|
},
|
||||||
|
checkPermissions() {
|
||||||
|
return !hasPermissions('PERSONAL_INFORMATION:READ+EDIT',
|
||||||
|
'PERSONAL_INFORMATION:READ+API_KEYS',
|
||||||
|
'PERSONAL_INFORMATION:READ+EDIT_PASSWORD',
|
||||||
|
'PERSONAL_INFORMATION:READ+THIRD_ACCOUNT'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
Loading…
Reference in New Issue