|
|
|
@ -77,35 +77,10 @@ const tableColumns = reactive<TableColumn[]>([
|
|
|
|
|
field: 'indexsetCode',
|
|
|
|
|
label: '指标集编码'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'beginDate',
|
|
|
|
|
label: '开始日期'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'endDate',
|
|
|
|
|
label: '结束日期'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'indexsetName',
|
|
|
|
|
label: '指标集名称'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'organCode',
|
|
|
|
|
label: '机构编码'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'frequency',
|
|
|
|
|
label: '频度',
|
|
|
|
|
slots:{
|
|
|
|
|
default:(data)=>{
|
|
|
|
|
return <span>{data.row.frequency?frequency_param_LIST.value[data.row.frequency]?.label:''}</span>
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'description',
|
|
|
|
|
label: '描述'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'indexsetType',
|
|
|
|
|
label: '指标集类型',
|
|
|
|
@ -123,17 +98,30 @@ const tableColumns = reactive<TableColumn[]>([
|
|
|
|
|
label: '数据模型编码',
|
|
|
|
|
slots:{
|
|
|
|
|
default:(data:any)=>{
|
|
|
|
|
return <span onClick={() => turnToDataModule(data.row)}>{data.row.modelCode}</span>
|
|
|
|
|
return <ElLink type="primary" underline={true} onClick={() => turnToDataModule(data.row)}>{data.row.modelCode}</ElLink>
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'createOrgan',
|
|
|
|
|
label: '创建机构'
|
|
|
|
|
field: 'beginDate',
|
|
|
|
|
label: '开始日期'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'endDate',
|
|
|
|
|
label: '结束日期'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'frequency',
|
|
|
|
|
label: '频度',
|
|
|
|
|
slots:{
|
|
|
|
|
default:(data)=>{
|
|
|
|
|
return <span>{data.row.frequency?frequency_param_LIST.value[data.row.frequency]?.label:''}</span>
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'createUser',
|
|
|
|
|
label: '创建用户'
|
|
|
|
|
field: 'description',
|
|
|
|
|
label: '描述'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'action',
|
|
|
|
|