|
|
@ -56,7 +56,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { houseListByGroup } from '@/api/hsyf' |
|
|
|
import { houseListByParthMemberName } from '@/api/hsyf' |
|
|
|
export default { |
|
|
|
name: '', |
|
|
|
data () { |
|
|
@ -85,7 +85,7 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
created () { |
|
|
|
this.houseListByGroup() |
|
|
|
// this.houseListByGroup() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
handleClickHouse(item){ |
|
|
@ -100,8 +100,8 @@ |
|
|
|
this.houseListByGroup() |
|
|
|
}, |
|
|
|
houseListByGroup(){ |
|
|
|
let {pageSize,pageNo} = this |
|
|
|
houseListByGroup({ group: this.$route.query.group,pageSize,pageNo }).then((res) => { |
|
|
|
let {pageSize,pageNo} = this; |
|
|
|
houseListByParthMemberName({ partyMemberName: this.partyName,pageSize,pageNo ,group:this.$route.query.group}).then((res) => { |
|
|
|
this.total = res.data.total; |
|
|
|
this.dataList = res.data.list; |
|
|
|
}) |
|
|
|