|
@@ -3,7 +3,7 @@
|
|
|
<el-row>
|
|
<el-row>
|
|
|
<!-- 流程分类树 -->
|
|
<!-- 流程分类树 -->
|
|
|
<el-col :lg="4" :xs="24" style="">
|
|
<el-col :lg="4" :xs="24" style="">
|
|
|
- <el-card shadow="hover" style="height: 92vh;margin-top: 10px">
|
|
|
|
|
|
|
+ <el-card shadow="hover" style="height: calc(100vh - 65px);">
|
|
|
<el-input v-model="categoryName" placeholder="请输入流程分类名" prefix-icon="Search" clearable/>
|
|
<el-input v-model="categoryName" placeholder="请输入流程分类名" prefix-icon="Search" clearable/>
|
|
|
<el-tree
|
|
<el-tree
|
|
|
ref="categoryTreeRef"
|
|
ref="categoryTreeRef"
|
|
@@ -47,7 +47,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
</transition>
|
|
</transition>
|
|
|
<el-card shadow="hover" style="border: none">
|
|
<el-card shadow="hover" style="border: none">
|
|
|
- <div class="table-content" style="height: 68vh;">
|
|
|
|
|
|
|
+ <div class="table-content" style="height: calc(100vh - 285px);">
|
|
|
<el-table v-loading="loading" :data="processInstanceList" @selection-change="handleSelectionChange">
|
|
<el-table v-loading="loading" :data="processInstanceList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column align="center" type="index" label="序号" width="60"></el-table-column>
|
|
<el-table-column align="center" type="index" label="序号" width="60"></el-table-column>
|
|
|
<el-table-column :show-overflow-tooltip="true" align="left" label="流程定义名称">
|
|
<el-table-column :show-overflow-tooltip="true" align="left" label="流程定义名称">
|
|
@@ -187,7 +187,7 @@ const deleteReason = ref('');
|
|
|
// 查询参数
|
|
// 查询参数
|
|
|
const queryParams = ref<ProcessInstanceQuery>({
|
|
const queryParams = ref<ProcessInstanceQuery>({
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
|
- pageSize: 10,
|
|
|
|
|
|
|
+ pageSize: 20,
|
|
|
name: undefined,
|
|
name: undefined,
|
|
|
key: undefined,
|
|
key: undefined,
|
|
|
categoryCode: undefined
|
|
categoryCode: undefined
|