认证管理-上报库管理-列宽可拖拽

This commit is contained in:
刘彦泽
2023-02-06 13:51:10 +08:00
parent 6ea852e7cd
commit 6bce97b148
@@ -44,9 +44,9 @@
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
:columns="columns"
>
<span slot="projectName" slot-scope="text,record" :title="text">
{{ text && text.length > 20 ? text.slice(0, 19) + '...' : text }}
</span>
<!-- <span slot="projectName" slot-scope="text,record" :title="text">-->
<!-- {{ text && text.length > 20 ? text.slice(0, 19) + '...' : text }}-->
<!-- </span>-->
<span slot="operation" slot-scope="text,record">
<a class="text-operation" @click="handlecody(record)" v-has="'params:report:history'">{{$t('Exporthistory')}}</a>
<a class="text-operation" @click="deleteLib(record)" v-has="'report:detail:list'">{{$t('See')}}</a>
@@ -488,4 +488,14 @@
::v-deep .ant-table-body {
background: transparent!important;
}
::v-deep .ant-table-row-cell-break-word{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
::v-deep .ant-table-placeholder{
margin-top: 8px !important
}
</style>