提交 32704b4c authored 作者: pengxiaohui's avatar pengxiaohui

腾讯会议管理权限控制

上级 f1d46fb5
...@@ -61,6 +61,10 @@ export default { ...@@ -61,6 +61,10 @@ export default {
permissions() { permissions() {
return this.$store.state.user.permissions || [] return this.$store.state.user.permissions || []
}, },
isTencentManager() {
const item = this.$store.state.user.roles.find(item => item.tag === 'tencent_manage')
return !!item
},
hasUpdate() { hasUpdate() {
return this.permissions.includes('f_tencentmeeting_update') return this.permissions.includes('f_tencentmeeting_update')
}, },
...@@ -124,7 +128,7 @@ export default { ...@@ -124,7 +128,7 @@ export default {
return this.rowData.enable_live || false return this.rowData.enable_live || false
}, },
operatable() { operatable() {
return this.isSuperAdmin || this.isMyself || this.isGeneralAdmin return this.isSuperAdmin || this.isMyself || this.isGeneralAdmin || this.isTencentManager
} }
}, },
filters: { filters: {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论