|
|
@ -118,14 +118,14 @@ |
|
|
|
</a> |
|
|
|
<div v-else-if="item.columnName == 'gender'"> |
|
|
|
{{ |
|
|
|
scope.row.gender == null |
|
|
|
? "--" |
|
|
|
: scope.row.gender == 1 |
|
|
|
? "男" |
|
|
|
: scope.row.gender == 2 |
|
|
|
? "女" |
|
|
|
: "--" |
|
|
|
}} |
|
|
|
scope.row.gender == null |
|
|
|
? "--" |
|
|
|
: scope.row.gender == 1 |
|
|
|
? "男" |
|
|
|
: scope.row.gender == 2 |
|
|
|
? "女" |
|
|
|
: "--" |
|
|
|
}} |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
@ -163,14 +163,14 @@ |
|
|
|
<template v-if="scope.row.home"> |
|
|
|
<div> |
|
|
|
{{ |
|
|
|
scope.row.home.resiHouseRel != null |
|
|
|
? scope.row.home.resiHouseRel == 0 |
|
|
|
? "自住" |
|
|
|
: scope.row.home.resiHouseRel == 1 |
|
|
|
? "租住" |
|
|
|
: "" |
|
|
|
: "" |
|
|
|
}} |
|
|
|
scope.row.home.resiHouseRel != null |
|
|
|
? scope.row.home.resiHouseRel == 0 |
|
|
|
? "自住" |
|
|
|
: scope.row.home.resiHouseRel == 1 |
|
|
|
? "租住" |
|
|
|
: "" |
|
|
|
: "" |
|
|
|
}} |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</div> |
|
|
@ -365,6 +365,7 @@ export default { |
|
|
|
{ columnName: "careerStatusName", label: "就业状况", width: 100 }, |
|
|
|
{ columnName: "resiHouseRel", label: "人房关系", width: 80 }, |
|
|
|
// { columnName: "mobile", label: "联系电话", width: 110 }, |
|
|
|
{ columnName: "statisfactionNum", label: "满意度次数", width: 100}, |
|
|
|
{ columnName: "updatedTime", label: "更新时间", width: 180 }, |
|
|
|
{ columnName: "updatedByName", label: "更新人", width: 80 }, |
|
|
|
], |
|
|
|