File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 24
24
<template #name_default =" { row } " >
25
25
<XTextButton :title =" row.name" @click =" handleBpmnDetail(row.id)" />
26
26
</template >
27
+ <!-- 流程分类 -->
28
+ <template #category_default =" { row } " >
29
+ <DictTag :type =" DICT_TYPE.BPM_MODEL_CATEGORY" :value =" Number(row?.category)" />
30
+ </template >
27
31
<!-- 表单信息 -->
28
32
<template #formId_default =" { row } " >
29
33
<XTextButton
Original file line number Diff line number Diff line change @@ -44,7 +44,12 @@ const crudSchemas = reactive<VxeCrudSchema>({
44
44
field : 'category' ,
45
45
dictType : DICT_TYPE . BPM_MODEL_CATEGORY ,
46
46
dictClass : 'number' ,
47
- isSearch : true
47
+ isSearch : true ,
48
+ table : {
49
+ slots : {
50
+ default : 'category_default'
51
+ }
52
+ }
48
53
} ,
49
54
{
50
55
title : '表单信息' ,
You can’t perform that action at this time.
0 commit comments