diff --git a/src/api/dk/home.js b/src/api/dk/home.js
new file mode 100644
index 0000000..26078e3
--- /dev/null
+++ b/src/api/dk/home.js
@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+// 查询借款计划列表
+export function homeIndex() {
+ return request({
+ url: '/dk/home/index',
+ method: 'get'
+ })
+}
diff --git a/src/views/dashboard/PanelGroup.vue b/src/views/dashboard/PanelGroup.vue
index b965618..a1f8000 100644
--- a/src/views/dashboard/PanelGroup.vue
+++ b/src/views/dashboard/PanelGroup.vue
@@ -7,9 +7,9 @@
@@ -20,9 +20,9 @@
@@ -33,9 +33,9 @@
@@ -46,9 +46,9 @@
@@ -57,14 +57,30 @@
+
+
diff --git a/vue.config.js b/vue.config.js
index 3295c07..851f3fb 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -33,8 +33,8 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
- // target: `http://localhost:8082`,
- target: `http://dk.qiqizl.com/prod-api`,
+ target: `http://localhost:8082`,
+ // target: `http://dk.qiqizl.com/prod-api`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''