29128
This commit is contained in:
@@ -79,7 +79,7 @@ export default {
|
||||
search: {search: ""},
|
||||
page: {current: 1, size: 10, total: 0},
|
||||
tableData: [],
|
||||
status: ''
|
||||
// status: ''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -48,7 +48,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
search: {status: 1},
|
||||
search: {status: ''},
|
||||
page: {current: 1, size: 10, total: 0},
|
||||
tableData: [],
|
||||
colConfigs: [
|
||||
@@ -67,8 +67,9 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
getTableData() {
|
||||
let status = this.search.status || 999
|
||||
this.instance.post("/appfinancialloanapply/list", null, {
|
||||
params: {...this.page, ...this.search}
|
||||
params: {...this.page, ...this.search, status}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.tableData = res.data?.records
|
||||
|
||||
Reference in New Issue
Block a user