新增失信人员

This commit is contained in:
shijingjing
2022-04-01 17:21:12 +08:00
parent 3dad000a72
commit 2d75d69b1e
9 changed files with 206 additions and 103 deletions

View File

@@ -59,7 +59,16 @@ export default {
}
},
methods: {
getTableData() {},
getTableData() {
this.instance.post("/appcredittaxinfo/list", null, {
params: {...this.page, ...this.search, status: 1,...this.select}
}).then(res => {
if (res?.data) {
this.tableData = res.data?.records
this.page.total = res.data.total
}
})
},
toAdd(id) {
this.$emit('change', {
type: 'Add',
@@ -70,7 +79,7 @@ export default {
},
toDetail(id) {
this.$emit('change', {
type: 'Add',
type: 'Detail',
params: {
id: id || ''
}