Compare commits

...

2 Commits

Author SHA1 Message Date
刘妍 4be4ed1179 Merge branch 'main' of http://123.132.248.154:10000/HC_YFZX/CaiYuanYiTiHua 2024-07-10 13:58:55 +08:00
刘妍 ff2653d714 优化 2024-07-10 13:58:51 +08:00
2 changed files with 7 additions and 2 deletions

View File

@ -94,8 +94,8 @@
// });
console.log(data);
let arr: any = [];
if (data.items && data.items.length > 0) {
data.items.forEach((item: any) => {
if (data && data.length > 0) {
data.forEach((item: any) => {
arr.push({
id: item.msgId,
title: item.content,

View File

@ -97,24 +97,29 @@ export const columns: BasicColumn[] = [
},
],
},
fixed: 'right',
},
{
title: '立案号',
dataIndex: 'registrnumber',
editRow: true,
editComponent: 'Input',
fixed: 'right',
},
{
title: '违法联系人',
dataIndex: 'illegalcontact',
editRow: true,
editComponent: 'Input',
fixed: 'right',
},
{
title: '违法人身份证号',
dataIndex: 'illegalshenfenzhenghao',
editRow: true,
editComponent: 'Input',
fixed: 'right',
width: 160,
},
];