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