export const columns: BasicColumn[] = [
{
title: '场景编码',
dataIndex: 'sceneCode',
align: 'left',
width: 200,
},
{
title: '场景名称',
dataIndex: 'sceneName',
align: 'left',
},
{
title: '行业++++',
dataIndex: 'industry',
align: 'left',
customRender: ({ record }) => {
const industryLabel = scenarioOptions.value.find(option => option.value === record.industry)?.label || '';
return industryLabel;
},
},
{
title: '场景类型',
dataIndex: 'sceneType',
align: 'left',
customRender: ({ record }) => {
const industryLabel = scenariotypeOptions.value.find(option => option.value === record.sceneType)?.label || '';
return industryLabel;
},
},
07-07
1万+