Merge branch 'pam' of github.com:jumpserver/lina into pam

This commit is contained in:
ibuler 2025-03-11 10:58:43 +08:00
commit 7ede31b978

View File

@ -71,7 +71,27 @@ export default {
hasImport: false, hasImport: false,
hasDatePicker: true, hasDatePicker: true,
searchConfig: { searchConfig: {
exclude: ['resource_type'] exclude: ['resource_type', 'action'],
options: [{
value: 'action',
label: this.$t('Action'),
type: 'choice',
children: [
{
default: true,
value: 'view',
label: this.$t('View')
},
{
value: 'update',
label: this.$t('Update')
},
{
value: 'delete',
label: this.$t('Delete')
}
]
}]
} }
} }
} }