| | |
| | | <el-table-column label="保洁方法" prop="method" sortable width="100" /> |
| | | <el-table-column label="材料存放地" prop="location" sortable width="120" /> |
| | | <el-table-column label="放置地点" prop="place" sortable width="100" /> |
| | | <el-table-column label="发生时间" align="center" sortable prop="happenTime" width="180"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.happenTime) }}</span> |
| | | </template> |
| | | <el-table-column label="发生时间" prop="happenTime" sortable width="100" align="center"> |
| | | <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '————'}}</template> |
| | | </el-table-column> |
| | | <el-table-column label="备注" prop="remark" sortable width="100" /> |
| | | <el-table-column label="电子文件" prop="url" width="100" > |
| | | <template slot-scope="scope" > |
| | | <div @click="handleCheck(scope.row)"> |
| | | <img |
| | | class="el-upload-list__item-thumbnail" |
| | | src="../../assets/images/deviceLis.png" |
| | |
| | | style="width: 35px; height: 35px;" |
| | | fit="cover" |
| | | v-if="scope.row.url === null" |
| | | > |
| | | ></div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |