新增失信人员
This commit is contained in:
@@ -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 || ''
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user