|
|
|
@ -89,7 +89,7 @@ const tableColumns = reactive<TableColumn[]>([
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'indexsetCode',
|
|
|
|
|
label: '指标集编码',
|
|
|
|
|
label: '指标集代码',
|
|
|
|
|
hidden:true,
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
@ -264,8 +264,12 @@ const addRuleConfig = async () => {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const AddAction = () => {
|
|
|
|
|
if(!indexsetCode){
|
|
|
|
|
ElMessage.warning("指标集不能为空,新增失败!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
dialogTitle.value = t('tableDemo.add')
|
|
|
|
|
currentRow.value = undefined
|
|
|
|
|
currentRow.value = {indexsetCode:indexsetCode}
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
actionType.value = 'add'
|
|
|
|
|
}
|
|
|
|
|