|
@@ -8,7 +8,7 @@
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
|
|
|
<el-tab-pane label="待办工作" name="first">
|
|
|
- <el-table :data="toListItem" style="width: 100%;" :header-cell-style="[]" empty-text="暂无数据">
|
|
|
+ <el-table :data="toListItem" style="width: 100%;" size="mini" :header-cell-style="[]" empty-text="暂无数据">
|
|
|
<template slot="empty">
|
|
|
<div>
|
|
|
<div>
|
|
@@ -17,13 +17,21 @@
|
|
|
<p>暂无数据</p>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <el-table-column prop="taskName" label="流程名称" width="180" align="left"></el-table-column>
|
|
|
+ <el-table-column prop="taskName" label="流程名称" width="180" align="left">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" style="color: #606266"><span>{{scope.row.taskName}}</span></el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="fwtitle" label="标题" align="left" >
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" @click="openactform(scope.row.processInstanceId,scope.row.businessKey,scope.row.name,scope.row.title,scope.row.taskName)" style="color: #606266">{{scope.row.title}}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="name" label="当前处理" width="180" align="center"> </el-table-column>
|
|
|
+ <el-table-column prop="name" label="当前处理" width="180" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" style="color: #606266"><span>{{scope.row.name}}</span></el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="createTime" label="到达时间" width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" style="color: #606266"><span>{{scope.row.createTime | timefilters}}</span></el-button>
|
|
@@ -33,16 +41,23 @@
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="已办工作" name="second">
|
|
|
- <el-table class="body" :data="doneList1" :header-cell-style="{}">
|
|
|
+ <el-table class="body" size="mini" :data="doneList1" :header-cell-style="{}">
|
|
|
<!-- <el-table-column type="index" label="序号" width="50" align="center"></el-table-column>-->
|
|
|
- <el-table-column prop="taskName" label="流程名称" width="180" align="left"></el-table-column>
|
|
|
+ <el-table-column prop="taskName" label="流程名称" width="180" align="left">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" style="color: #606266"><span>{{scope.row.taskName}}</span></el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="fwtitle" label="标题" align="left">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" @click="detern1(scope.row)" style="color: #606266">{{scope.row.title}}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
- <el-table-column prop="name" label="当前处理" width="180" align="center"></el-table-column>
|
|
|
+ <el-table-column prop="name" label="当前处理" width="180" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" style="color: #606266"><span>{{scope.row.name}}</span></el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="createTime" label="办理时间" width="180" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" style="color: #606266"><span>{{scope.row.createTime | timefilters}}</span></el-button>
|