This commit is contained in:
2025-07-02 16:41:04 +08:00
parent e0ad1c1444
commit d5f920072f
3 changed files with 10 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ const del = async (id) => {
回复{{ list.findIndex(k => k.pid === item.pid) }}: 回复{{ list.findIndex(k => k.pid === item.pid) }}:
</div> </div>
<img class="size-[32px]" v-if="item.image" :src="item.image" alt=""/> <img class="size-[32px]" v-if="item.image" :src="item.image" alt=""/>
<div class="whitespace-nowrap">{{ item.intro }}</div> <div class="whitespace-nowrap ellipsis w-[370px]">{{ item.intro }}</div>
</div> </div>
<a-popconfirm content="确认删除吗?" @ok="del(item.id)" v-if="!hideDelete"> <a-popconfirm content="确认删除吗?" @ok="del(item.id)" v-if="!hideDelete">
<a-button size="mini" shape="circle" type="text"> <a-button size="mini" shape="circle" type="text">

View File

@@ -38,6 +38,10 @@ const columns = [
title: '付款人账户', title: '付款人账户',
dataIndex: 'account' dataIndex: 'account'
}, },
{
title: '收款人账户',
dataIndex: 'receive'
},
{ {
title: '关联任务ID', title: '关联任务ID',
dataIndex: 'task_id' dataIndex: 'task_id'

View File

@@ -28,6 +28,11 @@ body {
color: var(--color-text-2) !important; color: var(--color-text-2) !important;
} }
.ellipsis {
text-overflow: ellipsis;
overflow: hidden;
}
#Item-View { #Item-View {
@apply flex flex-col p-[20px] min-h-full overflow-auto; @apply flex flex-col p-[20px] min-h-full overflow-auto;
.arco-card { .arco-card {