|
@@ -1,8 +1,8 @@
|
|
|
<template>
|
|
|
- <el-card style="min-height: 407px;overflow: hidden;">
|
|
|
+ <el-card style="min-height: 464px;overflow: hidden;">
|
|
|
<div slot="header" class="clearfix">
|
|
|
<img src="../../assets/image/sq.png" style="display: block;float: left;margin: 1px 5px 0 0;" height="15" width="17"/>
|
|
|
- <span>我的事项</span>
|
|
|
+ <span>我的工作</span>
|
|
|
<el-button style="float: right; padding: 3px 0;color: #000000;" type="text" @click="more">更多</el-button>
|
|
|
</div>
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
@@ -23,9 +23,12 @@
|
|
|
<el-button type="text" @click="openactform(scope.row.processInstanceId,scope.row.businessKey,scope.row.name,scope.row.title,scope.row.taskName)" style="color: black">{{scope.row.title}}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="createTime" label="接收时间" width="180" align="center">
|
|
|
+ <el-table-column prop="taskName" label="流程名称" width="180" align="left" ></el-table-column>
|
|
|
+ <el-table-column prop="createTime" label="到达时间" width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.createTime | timefilters}}</span>
|
|
|
+ <el-button type="text" @click="openactform(scope.row.processInstanceId,scope.row.businessKey,scope.row.name,scope.row.title,scope.row.taskName)" style="color: black">
|
|
|
+ <span>{{scope.row.createTime | timefilters}}</span>
|
|
|
+ </el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -39,9 +42,12 @@
|
|
|
<el-button type="text" @click="detern1(scope.row)" style="color: black">{{scope.row.title}}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="createTime" label="完成时间" width="180" align="center">
|
|
|
+ <el-table-column prop="taskName" label="流程名称" width="180" align="left" ></el-table-column>
|
|
|
+ <el-table-column prop="createTime" label="处理时间" width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.createTime | timefilters}}</span>
|
|
|
+ <el-button type="text" @click="detern1(scope.row)" style="color: black">
|
|
|
+ <span>{{scope.row.createTime | timefilters}}</span>
|
|
|
+ </el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -204,10 +210,10 @@
|
|
|
// 待办请求
|
|
|
toDoItemListInfo(this.queryParams).then(response => {
|
|
|
this.toListItem = response.rows;
|
|
|
- if(this.toListItem.length<5){
|
|
|
+ if(this.toListItem.length<4){
|
|
|
this.toListItem.length=response.rows.length
|
|
|
}else{
|
|
|
- this.toListItem.length=5
|
|
|
+ this.toListItem.length=4
|
|
|
}
|
|
|
this.title = response.title;
|
|
|
this.loading = false;
|