You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
325 B
18 lines
325 B
|
4 years ago
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
customFields: [{
|
||
|
|
title: '业务字段',
|
||
|
|
list: [{
|
||
|
|
label: '人员选择',
|
||
|
|
prop: 'user',
|
||
|
|
component: 'wf-user-select',
|
||
|
|
span: 12,
|
||
|
|
params: {
|
||
|
|
checkType: 'checkbox'
|
||
|
|
}
|
||
|
|
}]
|
||
|
|
}]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|