| | |
| | | <el-form-item label="人员类型" prop="queryUserType"> |
| | | <el-select v-model="searchForm.type" placeholder="请选择"> |
| | | <el-option label="访客" value="1"></el-option> |
| | | <el-option label="相长期关方" value="4"></el-option> |
| | | <el-option label="相关方人员" value="4"></el-option> |
| | | <el-option label="内部员工" value="2"></el-option> |
| | | <el-option label="货运司机" value="5"></el-option> |
| | | </el-select> |
| | |
| | | <el-table-column prop="idcardDecode" label="身份证号" min-width="130px"></el-table-column> |
| | | <el-table-column prop="companyName" label="组织" min-width="100px"> |
| | | <template slot-scope="{ row }"> |
| | | <span v-if="row.type === 2 || row.type === 0">{{ |
| | | <span v-if="row.type === 2 || row.type === 4 || row.type === 0">{{ |
| | | row.companyName |
| | | }}</span> |
| | | <span v-else>{{ row.visitCompanyName }}</span> |
| | |
| | | <span v-else>访客</span> |
| | | </template> |
| | | </el-table-column>--> |
| | | <el-table-column label="备注" prop="remark" min-width="100px"></el-table-column> |
| | | <el-table-column label="进场门禁" min-width="100px"> |
| | | <el-table-column label="进场门禁" min-width="150px"> |
| | | <template slot-scope="{ row }"> |
| | | <!-- <span v-if="row.type === 1">-</span> --> |
| | | <span>{{ row.deviceName || '-' }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="备注" prop="remark" min-width="120px"></el-table-column> |
| | | <el-table-column prop="eventDate" label="最后进场时间" min-width="140px"></el-table-column> |
| | | <el-table-column label="备注" prop="remark" min-width="100px"></el-table-column> |
| | | <el-table-column label="人脸照片" min-width="100px"> |
| | | <template slot-scope="{ row }"> |
| | | <el-image v-if="row.faceImgFull != null" style="width: 80px; height: 80px" :src="row.faceImgFull" |
| | |
| | | </el-image> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="操作" min-width="120" fixed="right"> |
| | | <template slot-scope="{ row }"> |
| | | <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" |
| | | v-permissions="['business:retention:delete']">标记离场</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | </el-table> |
| | | <pagination @size-change="handleSizeChange" @current-change="handlePageChange" :pagination="tableData.pagination"> |
| | | </pagination> |