|
|
@ -376,12 +376,12 @@ export default { |
|
|
|
<el-table-column prop="createTime" align="center" sortable label="状态"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span |
|
|
|
v-if="scope.row.status == 0" |
|
|
|
v-if="scope.row.status == '0'" |
|
|
|
style="color: #f56c6c; font-weight: 600" |
|
|
|
>待提交</span |
|
|
|
> |
|
|
|
<span |
|
|
|
v-else-if="scope.row.status == 1" |
|
|
|
v-else-if="scope.row.status == '1'" |
|
|
|
style="color: #67c23a; font-weight: 600" |
|
|
|
>审批中</span |
|
|
|
> |
|
|
|