7658-devToTest_2428 #508

Merged
alexm merged 392 commits from 7658-devToTest_2428 into test 2024-07-02 10:38:20 +00:00
1 changed files with 38 additions and 0 deletions
Showing only changes of commit c865bc2ed4 - Show all commits

View File

@ -58,6 +58,44 @@ const columns = computed(() => [
{
align: 'left',
name: 'invoice',
label: t('worker.formation.tableVisibleColumns.invoice'),
isTitle: true,
component: 'input',
},
{
align: 'left',
name: 'amount',
label: t('worker.formation.tableVisibleColumns.amount'),
isTitle: true,
component: 'input',
props: (prop) => ({
disable: true,
'model-value': prop.row.amount,
}),
create: true,
},
{
align: 'left',
name: 'remark',
label: t('worker.formation.tableVisibleColumns.remark'),
isTitle: true,
component: 'checkbox',
props: (prop) => ({
disable: true,
'model-value': prop.row.remark,
}),
create: true,
},
{
align: 'left',
name: 'hasDiploma',
label: t('worker.formation.tableVisibleColumns.hasDiploma'),
isTitle: true,
props: (prop) => ({
disable: true,
'model-value': prop.row.hasDiploma,
}),
create: true,
},
]);
</script>