diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
index 6c85fd78..cb72758a 100644
--- a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
+++ b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
@@ -1,32 +1,44 @@
-
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 详情
+
+
+
-
-
-
-
-
-
-
- 详情
-
-
-
+
-
+
@@ -58,7 +70,8 @@ export default {
{label: "贷款银行", prop: "organizationName"},
{label: "状态", prop: "status", align: "center", dict: "financialLoanApplyStatus"},
{slot: "options"}
- ]
+ ],
+ sta: {}
}
},
methods: {
@@ -77,18 +90,39 @@ export default {
},
handleFilterApplyTime() {
this.page.current = 1
- this.search.applyStartDate = this.search.applyTime?.[0].substring(0,10)
- this.search.applyEndDate = this.search.applyTime?.[1].substring(0,10)
+ this.search.applyStartDate = this.search.applyTime?.[0].substring(0, 10)
+ this.search.applyEndDate = this.search.applyTime?.[1].substring(0, 10)
this.getTableData()
+ },
+ getStaData() {
+ this.instance.post("/appfinancialloanapply/staticFinancialLoanApply").then(res => {
+ if (res?.data) {
+ this.sta = res.data
+ }
+ })
}
},
created() {
this.getTableData()
+ this.getStaData()
}
}