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