update 到账开票添加来款范围筛选

This commit is contained in:
zhaoxiao
2022-03-04 11:49:54 +08:00
parent c35adb2bf0
commit f462141654
6 changed files with 130 additions and 22 deletions
@@ -140,7 +140,10 @@
</template>
<template slot="text" slot-scope="text">
<j-ellipsis :value="text" :length="18"></j-ellipsis>
<a-tooltip>
<template slot="title">{{ text }}</template>
<div class="table-text">{{ text }}</div>
</a-tooltip>
</template>
<span slot="action" class="action-span-cell" slot-scope="text, record" v-if="canOperate">
@@ -268,7 +271,7 @@ export default {
}, {
title: '企业联系人',
align: 'center',
width: 280,
width: 120,
dataIndex: 'contactsTemporaryNameOne',
scopedSlots: { customRender: 'text' }
}, {
@@ -547,4 +550,9 @@ export default {
}
}
.table-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>