no message

main
HUOJIN\92525 2026-01-27 10:44:10 +08:00
parent a7cfe0027f
commit 54d3723cab
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import { BasicColumn } from '/@/components/Table';
import { render } from '@/utils/common/renderUtils';
import { h } from 'vue';
//列表数据
export const columns: BasicColumn[] = [
{
@ -61,7 +62,10 @@ export const columns: BasicColumn[] = [
title: '项目号',
align: 'center',
dataIndex: 'project',
width: 100,
width: 150,
customRender: ({ text }) => {
return h('div', { style: { wordBreak: 'break-all', lineHeight: '1.5' } }, text);
},
},
{
title: '任务号',