切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
小范
3 years ago
提交
0fb9e73e5df32122ce54d2888851c68ef0e963ef
1 个父辈
f4ef466b
工单管理表单完善
显示空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
43 行增加
和
16 行删除
src/views/technological/example.vue
static/nmmsVer.json
src/views/technological/example.vue
查看文件 @
0fb9e73
...
...
@@ -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 }}
...
...
static/nmmsVer.json
查看文件 @
0fb9e73
{
"nmmsVer"
:
"1.3
2
"
"nmmsVer"
:
"1.3
3
"
}
...
...
请
注册
或
登录
后发表评论