人员审查详情弹窗图片显示

pull/119/head
lukeyan 1 year ago
parent d3f85b6680
commit 8547bc3c89

@ -47,7 +47,7 @@
<el-table-column prop="processName" label="照片" width="110"> <el-table-column prop="processName" label="照片" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
<img <img
:src="scope.row.picUrl ? '' : scope.row.picUrl" :src="scope.row.picUrl ? scope.row.picUrl : ''"
alt="" alt=""
width="40" width="40"
height="40" height="40"
@ -103,6 +103,7 @@ export default {
applyCode: this.form_data.applyCode, applyCode: this.form_data.applyCode,
companyId: this.form_data.companyId, companyId: this.form_data.companyId,
companyName: this.form_data.companyName, companyName: this.form_data.companyName,
identityId:this.form_data.identityId,
examinationResultStatus: "2", examinationResultStatus: "2",
pageSize: this.pageSize, pageSize: this.pageSize,
pageNum: this.pageNum, pageNum: this.pageNum,

@ -11,7 +11,7 @@
<el-table-column prop="picUrl" label="照片" width="110"> <el-table-column prop="picUrl" label="照片" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
<img <img
:src="scope.row.picUrl ? '' : scope.row.picUrl" :src="scope.row.picUrl ? scope.row.picUrl : ''"
alt="" alt=""
width="40" width="40"
height="40" height="40"
@ -63,13 +63,13 @@ export default {
applyCode: this.form_data.applyCode, applyCode: this.form_data.applyCode,
companyId: this.form_data.companyId, companyId: this.form_data.companyId,
companyName: this.form_data.companyName, companyName: this.form_data.companyName,
examinationResultStatus:'1', examinationResultStatus: "1",
pageSize: this.pageSize, pageSize: this.pageSize,
pageNum: this.pageNum, pageNum: this.pageNum,
} };
get_personback_item_data(param).then(res=> { get_personback_item_data(param).then((res) => {
this.normal_table_data.rows = res.rows this.normal_table_data.rows = res.rows;
}) });
}, },
// //
table_header({ row, rowIndex }) { table_header({ row, rowIndex }) {
@ -85,12 +85,12 @@ export default {
console.log(`每页 ${val}`); console.log(`每页 ${val}`);
this.pageNum = 1; this.pageNum = 1;
this.pageSize = val; this.pageSize = val;
this.search() this.search();
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
console.log(`当前页: ${val}`); console.log(`当前页: ${val}`);
this.pageNum = val; this.pageNum = val;
this.search() this.search();
}, },
}, },
}; };

@ -155,7 +155,6 @@ export default {
}, },
showVideo() { showVideo() {
realTimeMonitoring({ pageSize: 10, pageNum: 1, deviceName: this.cameraData.deviceName, companyId: this.cameraData.companyId }).then(res => { realTimeMonitoring({ pageSize: 10, pageNum: 1, deviceName: this.cameraData.deviceName, companyId: this.cameraData.companyId }).then(res => {
console.log('22222222');
this.monitorData = res.data[0] this.monitorData = res.data[0]
this.diaVisible = true this.diaVisible = true
}) })

Loading…
Cancel
Save