|
@@ -132,22 +132,30 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="rejectUserName" label="打回人" min-width="200">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.rejectUserName">
|
|
|
+ <span
|
|
|
+ v-if="scope.row.status === 'REJECTED' && scope.row.rejectUserName"
|
|
|
+ >
|
|
|
{{ scope.row.rejectUserName }}({{ scope.row.rejectLoginName }})
|
|
|
</span>
|
|
|
<span v-else>--</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="headerTime" label="打回时间" width="170">
|
|
|
- <span slot-scope="scope">{{
|
|
|
- scope.row.headerTime | timestampFilter
|
|
|
- }}</span>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.status === 'REJECTED'">{{
|
|
|
+ scope.row.headerTime | timestampFilter
|
|
|
+ }}</span>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="rejectReason" label="打回原因" width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.status === 'REJECTED'">{{
|
|
|
+ scope.row.rejectReason
|
|
|
+ }}</span>
|
|
|
+ <span v-else>--</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- prop="rejectReason"
|
|
|
- label="打回原因"
|
|
|
- width="120"
|
|
|
- ></el-table-column>
|
|
|
<el-table-column
|
|
|
class-name="action-column"
|
|
|
label="操作"
|