修改评标场所、评标区域,编码显示列

This commit is contained in:
袁帅
2022-09-28 14:54:49 +08:00
parent 629f1bb304
commit fcdaa72e78
2 changed files with 4 additions and 10 deletions

View File

@ -62,14 +62,11 @@ const AreasManage: React.FC<{}> = () => {
hideInSearch: true, hideInSearch: true,
}, },
{ {
title: '评标区域', title: '评标区域编码',
align: 'center', align: 'center',
dataIndex: 'areaRegion', dataIndex: 'areaRegionCode',
width: '10%', width: '10%',
hideInSearch: true, hideInSearch: true,
renderText(text, record, index, action) {
return record.areaRegionName + "" + record.areaRegionCode + " ";
},
}, },
{ {
title: '评标区域名称', title: '评标区域名称',

View File

@ -85,14 +85,11 @@ const PlaceManage: React.FC<{}> = () => {
hideInSearch: true, hideInSearch: true,
}, },
{ {
title: '评标场所', title: '评标场所编码',
align: 'center', align: 'center',
dataIndex: 'placeRegion', dataIndex: 'placeRegionCode',
width: '10%', width: '10%',
hideInSearch: true, hideInSearch: true,
renderText(text, record, index, action) {
return record.placeRegionName + "" + record.placeRegionCode + "";
},
}, },
{ {
title: '评标场所名称', title: '评标场所名称',