|
|
|
@ -91,14 +91,13 @@ |
|
|
|
:height="tableHeight" |
|
|
|
:span-method="arraySpanMethod" |
|
|
|
> |
|
|
|
<el-table-column label="序号" prop="desc" align="center" width="50" fixed="left" /> |
|
|
|
<el-table-column label="序号" prop="desc" align="center" width="50"/> |
|
|
|
<el-table-column |
|
|
|
prop="houseHolderName" |
|
|
|
width="100" |
|
|
|
label="户主姓名" |
|
|
|
align="center" |
|
|
|
:show-overflow-tooltip="true" |
|
|
|
fixed="left" |
|
|
|
/> |
|
|
|
<el-table-column |
|
|
|
prop="address" |
|
|
|
@ -248,7 +247,7 @@ |
|
|
|
type="text" |
|
|
|
class="div-table-button--detail" |
|
|
|
size="small" |
|
|
|
v-if="scope.row.checkState === '0'" |
|
|
|
v-if="scope.row.agencyId == agencyId && scope.row.checkState === '0'" |
|
|
|
@click="handleWatch('check', scope.row)" |
|
|
|
>审核</el-button |
|
|
|
> |
|
|
|
@ -434,6 +433,7 @@ import roomForm from './roomForm' |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
agencyId: '', |
|
|
|
openSearch: false, |
|
|
|
|
|
|
|
formShow: false, |
|
|
|
@ -489,7 +489,10 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
created () { |
|
|
|
this.agencyId = localStorage.getItem('agencyId') |
|
|
|
}, |
|
|
|
mounted () { |
|
|
|
// this.getcommunityList(); |
|
|
|
this.getDictList() |
|
|
|
this.getTableData() |
|
|
|
|