1
0
mirror of https://github.com/jumpserver/lina.git synced 2025-05-12 18:16:24 +00:00

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,
hasDatePicker: true,
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')
}
]
}]
}
}
}