添加运维管理员 权限

This commit is contained in:
a0049873 2023-01-13 09:44:32 +08:00
parent ddf78f3b6b
commit 654e76e352
2 changed files with 5 additions and 3 deletions

View File

@ -21,12 +21,14 @@
<a-tooltip>
<template #title>
{{
approveStatus === '通过'
approveStatus === '通过' || role
? item.link.value
: '请申请后查看'
}}
</template>
<span :class="{ 'blur-word': approveStatus !== '通过' }">
<span
:class="{ 'blur-word': approveStatus !== '通过' && !role }"
>
{{ item.link.value }}
</span>
</a-tooltip>

View File

@ -16,7 +16,7 @@
<template #title>
{{ approveStatus === '通过' ? dataFrom.link : '请申请后查看' }}
</template>
<p :class="{ 'blur-word': approveStatus !== '通过' }">
<p :class="{ 'blur-word': approveStatus !== '通过' && !role }">
{{ dataFrom.link }}
</p>
</a-tooltip>