|
@@ -6,8 +6,8 @@
|
|
|
<a-form layout="inline">
|
|
|
<a-row :gutter="48">
|
|
|
<a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="关键字">
|
|
|
- <a-input v-model="queryParam.keyword" placeholder="请输入名称/类型名称" />
|
|
|
+ <a-form-item label="流程名称">
|
|
|
+ <a-input v-model="queryParam.name" placeholder="请输入流程名称名称" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6 || 24" :sm="24">
|
|
@@ -23,8 +23,8 @@
|
|
|
<div class="table-operator" style="margin-bottom: 8px;">
|
|
|
<a-row>
|
|
|
<a-col :md="16">
|
|
|
- <a-button type="primary" icon="plus" @click="handleAdd()">新增</a-button>
|
|
|
- <a-button style="margin-left: 8px" type="primary" icon="download" @click="doExport">导出</a-button>
|
|
|
+ <a-button type="primary" icon="plus" @click="handleAdd()">添加流程</a-button>
|
|
|
+<!-- <a-button style="margin-left: 8px" type="primary" icon="download" @click="doExport">导出</a-button>-->
|
|
|
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0">
|
|
|
<a-menu slot="overlay">
|
|
|
<a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
@@ -87,25 +87,21 @@ export default {
|
|
|
}`
|
|
|
},
|
|
|
},
|
|
|
- {
|
|
|
- title: '添加时间',
|
|
|
- dataIndex: 'createdTime',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '创建人',
|
|
|
- dataIndex: 'createdUserName',
|
|
|
- },
|
|
|
{
|
|
|
title: '流程名称',
|
|
|
dataIndex: 'name',
|
|
|
},
|
|
|
{
|
|
|
- title: '流程总节点数',
|
|
|
- dataIndex: 'totalNode',
|
|
|
+ title: '流程层级数',
|
|
|
+ dataIndex: 'levelNode',
|
|
|
},
|
|
|
{
|
|
|
- title: '层级节点数',
|
|
|
- dataIndex: 'levelNode',
|
|
|
+ title: '创建时间',
|
|
|
+ dataIndex: 'createdTime',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '创建人',
|
|
|
+ dataIndex: 'createdUserName',
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|