完成流程定义的列表的实现

This commit is contained in:
YunaiV
2022-01-03 11:08:47 +08:00
parent 509e11a7b0
commit f8b34d5b6d
10 changed files with 154 additions and 45 deletions

View File

@ -26,7 +26,7 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['infra:config:create']">新建流程</el-button>
v-hasPermi="['infra:config:create']">新建流程模型</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
@ -72,7 +72,7 @@
:active-value="1" :inactive-value="2" @change="handleStatusChange(scope.row)" />
</template>
</el-table-column>
<el-table-column label="部署时间" align="center" prop="createTime" width="180">
<el-table-column label="部署时间" align="center" prop="deploymentTime" width="180">
<template slot-scope="scope">
<span v-if="scope.row.processDefinition">{{ parseTime(scope.row.processDefinition.deploymentTime) }}</span>
</template>
@ -256,9 +256,7 @@ export default {
</script>
<style lang="scss">
.my-process-designer {
height: calc(100vh - 200px);
}
</style>