Commit 15260e600988a74c396728434342667653213c07
Merge branch 'dev' of http://61.169.120.202:8888/youxiw20000/trash into dev
Showing
1 changed file
with
5 additions
and
0 deletions
trash-ui/src/views/unit/dropPointInfo/index.vue
| ... | ... | @@ -105,6 +105,11 @@ |
| 105 | 105 | <el-table-column label="投放点编号" align="center" prop="dropPointNo"/> |
| 106 | 106 | <el-table-column label="运营单位" align="center" prop="operatingUnit"/> |
| 107 | 107 | <el-table-column label="运输单位" align="center" prop="transportUnit"/> |
| 108 | + <el-table-column label="审批状态" align="center" prop="status"> | |
| 109 | + <template slot-scope="scope"> | |
| 110 | + <span>{{ parseStatus(scope.row.status) }}</span> | |
| 111 | + </template> | |
| 112 | + </el-table-column> | |
| 108 | 113 | <el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
| 109 | 114 | <template slot-scope="scope"> |
| 110 | 115 | <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}-{i}-{s}') }}</span> | ... | ... |