NEZ-1945 fix : 用户列表页面 详细视图下 增加 详情提示窗

This commit is contained in:
likexuan
2022-07-05 13:30:11 +08:00
parent a520848c5a
commit ea09bd51a5
2 changed files with 32 additions and 29 deletions

View File

@@ -39,9 +39,7 @@
<template slot-scope="scope" :column="item">
<template v-if="item.prop === 'name'">
<div style="cursor:text" class="document-copy-block">
<div class="user-name-td document-copy-text" :class="{'margin-l-10': !scope.row.online}"
@mouseenter="labelHover(scope.row, 'user', true, false, $event)"
@mouseleave="labelHover(scope.row, 'user', false, false,)">
<div class="user-name-td document-copy-text" :class="{'margin-l-10': !scope.row.online}">
<i class="nz-icon nz-icon-user1 user-online" v-if="scope.row.online" :title="$t('overall.online')"/>
<div>
<div class="flex-align-center">
@@ -120,21 +118,14 @@
<div v-else>&nbsp;</div>
</template>
</el-table>
<alertLabel
v-if="alertLabelShow"
:id="alertLabelId"
:that="alertLabelObj"
:type="alertLabelType"
></alertLabel>
</div>
</template>
<script>
import table from '@/components/common/mixin/table'
import alertLabelMixin from '@/components/common/mixin/alertLabelMixin'
export default {
name: 'userTable',
mixins: [table, alertLabelMixin],
mixins: [table],
props: {
loading: Boolean
},