| | |
| | | <el-table-column type="index" label="序号" align="center" width="80"/> |
| | | <el-table-column label="单位名称" prop="enterpriseName" align="center" width="180"></el-table-column> |
| | | <el-table-column label="联系电话" prop="enterpriseOfficephone" align="center"></el-table-column> |
| | | <el-table-column label="库存数量/箱" prop="stockNum" align="center"></el-table-column> |
| | | <el-table-column label="填报时库存数量/箱" prop="stockNum" align="center"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.stockNum == null ? '--' : scope.row.stockNum }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="是否查出隐患" prop="hiddendangerStatus" align="center"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.hiddendangerStatus == 1 ? '是' : '否' }}</span> |