...
|
...
|
@@ -83,22 +83,35 @@ |
|
|
width="160">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="开始时间"
|
|
|
prop="startTime"
|
|
|
width="160">
|
|
|
label="发起人"
|
|
|
prop="startUserId"
|
|
|
width="100">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="结束时间"
|
|
|
prop="endTime"
|
|
|
label="开始时间"
|
|
|
prop="startTime"
|
|
|
width="160">
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column-->
|
|
|
<!-- label="结束时间"-->
|
|
|
<!-- prop="endTime"-->
|
|
|
<!-- width="160">-->
|
|
|
<!-- </el-table-column>-->
|
|
|
<el-table-column
|
|
|
label="执行中"
|
|
|
prop="isActive">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.isActive ===true">是</span>
|
|
|
<span v-else>否</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="是否结束"
|
|
|
prop="isEnded">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.isEnded ===true">是</span>
|
|
|
<span v-else>否</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="流程状态"
|
...
|
...
|
@@ -112,15 +125,15 @@ |
|
|
label="实例关键字"
|
|
|
prop="processDefinitionKey">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="用时"
|
|
|
prop="durationInMillis">
|
|
|
<template slot-scope="scope">
|
|
|
<span>
|
|
|
{{ scope.row.durationInMillis | formatSeconds }}
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column-->
|
|
|
<!-- label="用时"-->
|
|
|
<!-- prop="durationInMillis">-->
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
<!-- <span>-->
|
|
|
<!-- {{ scope.row.durationInMillis | formatSeconds }}-->
|
|
|
<!-- </span>-->
|
|
|
<!-- </template>-->
|
|
|
<!-- </el-table-column>-->
|
|
|
<el-table-column
|
|
|
label="流程定义名称"
|
|
|
prop="processDefinitionName"
|
...
|
...
|
@@ -229,6 +242,11 @@ |
|
|
width="160">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="发起人"
|
|
|
prop="startUserId"
|
|
|
width="100">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="开始时间"
|
|
|
prop="startTime"
|
|
|
width="160">
|
...
|
...
|
@@ -241,10 +259,18 @@ |
|
|
<el-table-column
|
|
|
label="执行中"
|
|
|
prop="isActive">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.isActive ===true">是</span>
|
|
|
<span v-else>否</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="是否结束"
|
|
|
prop="isEnded">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.isEnded ===true">是</span>
|
|
|
<span v-else>否</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="流程状态"
|
...
|
...
|
@@ -260,7 +286,8 @@ |
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="durationInMillis"
|
|
|
label="用时">
|
|
|
label="用时"
|
|
|
width="140">
|
|
|
<template slot-scope="scope">
|
|
|
<span>
|
|
|
{{ scope.row.durationInMillis | formatSeconds }}
|
...
|
...
|
|