fix list display exception(#1153)

pull/1189/head
shikaibin 2 years ago
parent bca38c0acb
commit 63f320ef67

@ -74,7 +74,7 @@
fit
highlight-current-row
>
<el-table-column :label="$t('common.num')" width="80">
<el-table-column fixed :label="$t('common.num')" width="80">
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column>
<el-table-column :label="$t('tenantManage.tenant')" width="150">
@ -367,6 +367,17 @@
</div>
</template>
<style>
.el-table--border th.el-table__cell {
padding: 0;
height: 40px;
}
.el-table .cell {
line-height: normal;
}
</style>
<script>
import * as itemApi from '@/api/hippo4j-item';
import * as tenantApi from '@/api/hippo4j-tenant';

Loading…
Cancel
Save