|
@@ -8,15 +8,21 @@
|
|
|
|
|
|
<el-table :data="myApplication" size="mini" style="width: 100%;" :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="myAppReturn(scope.row)" style="color: black">{{scope.row.fwtitle}}</el-button>
|
|
|
+ <el-button type="text" @click="myAppReturn(scope.row)" style="color: #606266">{{scope.row.fwtitle}}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
-
|
|
|
<el-table-column prop="dispose" label="当前处理" width="180" align="center" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" style="color: #606266"><span>{{scope.row.dispose}}</span></el-button>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="createTime" label="创建时间" width="180" align="center">
|
|
|
<template slot-scope="scope">
|