|
|
@ -9,13 +9,13 @@ |
|
|
|
<div class="tabs"> |
|
|
|
<div |
|
|
|
:class="{ 'z-on': searchData.type == 'jumin' }" |
|
|
|
@click="searchData.type = 'jumin'" |
|
|
|
@click="handelClickTab('jumin')" |
|
|
|
> |
|
|
|
查居民 |
|
|
|
</div> |
|
|
|
<div |
|
|
|
:class="{ 'z-on': searchData.type == 'fangwu' }" |
|
|
|
@click="searchData.type = 'fangwu'" |
|
|
|
@click="handelClickTab('fangwu')" |
|
|
|
> |
|
|
|
查房屋 |
|
|
|
</div> |
|
|
@ -204,6 +204,12 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="备注" align="center" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope" label="备注"> |
|
|
|
{{scope.row.remark}} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
|
|
<el-table-column fixed="right" label="操作" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
@ -352,7 +358,7 @@ export default { |
|
|
|
return { |
|
|
|
searchStatus: "ini", //ing over |
|
|
|
searchData: { |
|
|
|
type: "jumin", |
|
|
|
type: "fangwu", |
|
|
|
searchKey: "", |
|
|
|
}, |
|
|
|
|
|
|
@ -424,14 +430,14 @@ export default { |
|
|
|
width: 110, |
|
|
|
options: [], |
|
|
|
}, |
|
|
|
{ |
|
|
|
itemId: "20220422102809_1011", |
|
|
|
label: "备注", |
|
|
|
columnName: "remark", |
|
|
|
itemType: "textarea", |
|
|
|
width: 110, |
|
|
|
options: [], |
|
|
|
}, |
|
|
|
// { |
|
|
|
// itemId: "20220422102809_1011", |
|
|
|
// label: "备注", |
|
|
|
// columnName: "remark", |
|
|
|
// itemType: "textarea", |
|
|
|
// width: 110, |
|
|
|
// options: [], |
|
|
|
// }, |
|
|
|
// { |
|
|
|
// itemId: "20220422102809_1012", |
|
|
|
// label: "居民分类", |
|
|
@ -719,6 +725,7 @@ export default { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
firstSearch() { |
|
|
|
console.log(getQueryPara("type")); |
|
|
|
this.searchData.searchKey = getQueryPara("searchKey"); |
|
|
|
this.searchData.type = getQueryPara("type"); |
|
|
|
this.handleClickSearchBtn(); |
|
|
@ -871,6 +878,10 @@ export default { |
|
|
|
} else { |
|
|
|
} |
|
|
|
}, |
|
|
|
handelClickTab(type){ |
|
|
|
this.searchData.type = type |
|
|
|
// this.searchData.searchKey = '' |
|
|
|
} |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|