|
@@ -96,10 +96,6 @@ const columnConfig: ColumnConfigType[] = [
|
|
|
label: '流程版本'
|
|
|
},
|
|
|
{
|
|
|
- prop: 'ext',
|
|
|
- label: '扩展字段'
|
|
|
- },
|
|
|
- {
|
|
|
prop: 'isPublish',
|
|
|
label: '是否发布',
|
|
|
dict: 'is_publish'
|
|
@@ -110,8 +106,9 @@ const columnConfig: ColumnConfigType[] = [
|
|
|
dict: 'activity_status'
|
|
|
},
|
|
|
{
|
|
|
- prop: 'createTime',
|
|
|
- label: '创建时间'
|
|
|
+ prop: 'formPath',
|
|
|
+ label: '表单路径',
|
|
|
+ showOverflowTooltip: true
|
|
|
},
|
|
|
{
|
|
|
width: 500,
|
|
@@ -233,17 +230,21 @@ const formConfig: FormConfigType[] = [
|
|
|
{
|
|
|
type: 'input',
|
|
|
prop: 'version',
|
|
|
- label: '流程版本'
|
|
|
+ label: '流程版本',
|
|
|
+ rule: [{ required: true, message: '流程版本不能为空', trigger: 'blur' }]
|
|
|
},
|
|
|
{
|
|
|
type: 'input',
|
|
|
- prop: 'ext',
|
|
|
- label: '扩展字段'
|
|
|
+ prop: 'formPath',
|
|
|
+ label: '表单路径',
|
|
|
+ rule: [{ required: true, message: '表单路径不能为空', trigger: 'blur' }]
|
|
|
},
|
|
|
{
|
|
|
type: 'input',
|
|
|
- prop: 'formPath',
|
|
|
- label: '审批表单路径'
|
|
|
+ itemType: 'textarea',
|
|
|
+ prop: 'ext',
|
|
|
+ label: '扩展字段',
|
|
|
+ rows: 3
|
|
|
},
|
|
|
{
|
|
|
type: 'select',
|