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