|
@@ -48,7 +48,11 @@
|
|
|
<div>{{scope.row.transType | transTypeFilter}}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="operatorId" label="操作人"></el-table-column>
|
|
|
+ <el-table-column align="center" prop="operatorId" label="操作人">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>{{scope.row.operatorId?scope.row.operatorId:scope.row.userId}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" prop="transMinutes" label="时间变动/分钟">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{scope.row.transMinutes +'分钟'}}</div>
|