Browse Source

居民信息完善666

shibei_master
13176889840 4 years ago
parent
commit
2d53279d11
  1. 8
      src/views/modules/base/resi.vue

8
src/views/modules/base/resi.vue

@ -11,6 +11,7 @@
</div>
<el-table
:data="tableData"
v-loading="tableLoading"
border
style="width: 100%"
class="resi-table">
@ -130,6 +131,7 @@ export default {
},
data () {
return {
tableLoading: false,
btnLoading: false,
disabled: false,
pageLoading: false,
@ -462,14 +464,15 @@ export default {
return this.$message.error('网络错误')
})
},
getTableData () {
async getTableData () {
this.tableLoading = true
let params = {
formCode: 'resi_base_info',
pageNo: this.currentPage,
pageSize: this.pageSize,
conditions: this.conditions
}
this.$http
await this.$http
.post('/epmetuser/icresiuser/listresi', params)
.then(({ data: res }) => {
if (res.code !== 0) {
@ -482,6 +485,7 @@ export default {
.catch(() => {
return this.$message.error('网络错误')
})
this.tableLoading = false
},
getrowInfo (id) {
let params = {

Loading…
Cancel
Save