We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20564ed commit 21b6532Copy full SHA for 21b6532
src/views/bpm/model/CategoryDraggableModel.vue
@@ -113,6 +113,11 @@
113
</el-text>
114
</template>
115
</el-table-column>
116
+ <el-table-column label="流程类型" prop="modelType" min-width="120">
117
+ <template #default="{ row }">
118
+ <dict-tag :value="row.type" :type="DICT_TYPE.BPM_MODEL_TYPE" />
119
+ </template>
120
+ </el-table-column>
121
<el-table-column label="表单信息" prop="formType" min-width="150">
122
<template #default="scope">
123
<el-button
@@ -260,6 +265,7 @@
260
265
261
266
262
267
<script lang="ts" setup>
268
+import { DICT_TYPE } from '@/utils/dict'
263
269
import { CategoryApi, CategoryVO } from '@/api/bpm/category'
264
270
import Sortable from 'sortablejs'
271
import { formatDate } from '@/utils/formatTime'
0 commit comments