feat: [bpm] 加签任务

This commit is contained in:
jason
2026-01-12 10:00:52 +08:00
parent a7d3d42111
commit dc1d19fba6
5 changed files with 161 additions and 3 deletions

View File

@@ -7,6 +7,7 @@
value-key="id"
label-key="nickname"
:type="type"
:prop="prop"
filterable
:placeholder="placeholder"
@confirm="handleConfirm"
@@ -23,10 +24,12 @@ const props = withDefaults(defineProps<{
type?: 'radio' | 'checkbox'
label?: string
placeholder?: string
prop?: string
}>(), {
type: 'checkbox',
label: '',
placeholder: '请选择',
prop: '',
})
const emit = defineEmits<{