BUG 30542

This commit is contained in:
aixianling
2022-07-14 16:56:36 +08:00
parent c6f7d4e449
commit a6cd4d2578

View File

@@ -76,7 +76,7 @@ export default {
},
data() {
return {
search: {status: "0", applyTime: []},
search: {status: "", applyTime: []},
page: {current: 1, size: 10, total: 0},
tableData: [],
}
@@ -105,7 +105,7 @@ export default {
},
created() {
this.$dict.load('financialLoanApplyStatus')
this.search.status = this.$route.query.status
this.search.status = this.$route.query.status || "0"
this.getTableData()
}
}