|
|
@@ -96,6 +96,7 @@
|
|
|
label="发起部门"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
+ :key="Date.now()"
|
|
|
prop="submitBy"
|
|
|
show-overflow-tooltip
|
|
|
width="100"
|
|
|
@@ -111,11 +112,13 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
+ :key="Date.now()"
|
|
|
prop="forwardBy"
|
|
|
show-overflow-tooltip
|
|
|
width="100"
|
|
|
>
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
+ <span>上节点</span><br/>
|
|
|
<span>提交人</span>
|
|
|
<el-tooltip effect="dark" placement="top">
|
|
|
<div slot="content">
|
|
|
@@ -156,11 +159,13 @@
|
|
|
<template slot-scope="scope">{{ getParenthesesStr(scope.row.subject)[2] }}</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
|
- <el-table-column
|
|
|
- show-overflow-tooltip
|
|
|
- width="160"
|
|
|
- :label="item.time + '时间'"
|
|
|
- >
|
|
|
+ <el-table-column show-overflow-tooltip width="160" :key="Date.now()">
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <template v-if="['wait'].includes(activeTab)">
|
|
|
+ <span>上节点</span><br/>
|
|
|
+ </template>
|
|
|
+ <span>{{ item.time + '时间' }}</span>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope">{{ scope.row.createTime.slice(0, 16) }}</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|