|
|
@ -54,9 +54,9 @@ |
|
|
|
<el-table-column label="付款备注" align="center" prop="remark" /> |
|
|
|
<el-table-column label="状态" align="center" prop="status"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.status == '0'" style="color: deepskyblue; font-size: 18px;">提交</span> |
|
|
|
<span v-if="scope.row.status == '1'" style="color: red; font-size: 18px;">拒绝</span> |
|
|
|
<span v-if="scope.row.status == '2'" style="color: green; font-size: 18px;">通过</span> |
|
|
|
<el-tag v-if="scope.row.status == '0'">提交</el-tag> |
|
|
|
<el-tag type="danger" v-if="scope.row.status == '1'">拒绝</el-tag> |
|
|
|
<el-tag type="success" v-if="scope.row.status == '2'">通过</el-tag> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
|
|
|