Commit 5b7df69092f99870e3766890e8af43d6dd842b29

Authored by 2c2c2c
1 parent f8cea7e4

新增审批字段

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>
... ...