[update] 52899

This commit is contained in:
zhaomeijing
2022-05-26 11:01:54 +08:00
parent a0e5c46ac9
commit 9436086375
@@ -72,6 +72,11 @@
<a class="action-edit" @click="actionEdit(record)" v-has="'dict:edit'">{{$t('edit')}}</a>
<a class="action-delete" href="javascript:;" @click="onDelete(record)" v-has="'dict:logicDelete'">{{$t('delete')}}</a>
</template>
<template slot="describe" slot-scope="text, record">
<span class="text" :title="text">
{{text && text.length > 18?text.slice(0,17)+'...':text}}
</span>
</template>
</a-table>
<div class="page" v-if="tableData.length > 0">
<a-pagination
@@ -145,6 +150,7 @@
title: this.$t('describe'),
align: 'center',
dataIndex: 'description',
scopedSlots: { customRender: 'describe' },
ellipsis: true,
width: 300
},