diff --git a/sub-operation-service/src/router/index.js b/sub-operation-service/src/router/index.js
index 4f1f687..a41f7f6 100644
--- a/sub-operation-service/src/router/index.js
+++ b/sub-operation-service/src/router/index.js
@@ -76,9 +76,15 @@ export const constantRoutes = [
{
path: '/sub-operation-service/mySource',
component: () => import('@/views/userCenter/mySource.vue'),
- name: 'userLands',
+ name: 'mySource',
meta: { title: '我的溯源' },
},
+ {
+ path: '/sub-operation-service/myFinance',
+ component: () => import('@/views/userCenter/myFinance.vue'),
+ name: 'myFinance',
+ meta: { title: '我的金融' },
+ },
],
},
diff --git a/sub-operation-service/src/views/userCenter/components/leftMenu.vue b/sub-operation-service/src/views/userCenter/components/leftMenu.vue
index a7521ba..dd85883 100644
--- a/sub-operation-service/src/views/userCenter/components/leftMenu.vue
+++ b/sub-operation-service/src/views/userCenter/components/leftMenu.vue
@@ -34,7 +34,8 @@ const leftMenu = reactive([
{ name: 'agricultural', title: '我的购物车', icon: 'menu1.png', path: '/sub-operation-service/userCenter' },
{ name: 'supplier', title: '我的订单', icon: 'menu2-1.png', path: '/sub-operation-service/userOrders' },
// { name: 'purchaser', title: '我的土地', icon: 'menu3-1.png', path: '/sub-operation-service/userLands' },
- { name: 'purchaser', title: '我的溯源', icon: 'menu3-1.png', path: '/sub-operation-service/mySource' },
+ { name: 'mySource', title: '我的溯源', icon: 'menu3-1.png', path: '/sub-operation-service/mySource' },
+ { name: 'myFinance', title: '我的金融', icon: 'menu3-1.png', path: '/sub-operation-service/myFinance' },
]);
let currentIndex = ref(0);
diff --git a/sub-operation-service/src/views/userCenter/components/tableComponent.vue b/sub-operation-service/src/views/userCenter/components/tableComponent.vue
index 035df88..03b63cc 100644
--- a/sub-operation-service/src/views/userCenter/components/tableComponent.vue
+++ b/sub-operation-service/src/views/userCenter/components/tableComponent.vue
@@ -246,7 +246,7 @@ onBeforeUnmount(() => {
}
.pagination-container {
margin-top: 10px;
- padding: 0 16px;
+ padding: 0 20px;
display: flex;
justify-content: space-between;
color: #999;
diff --git a/sub-operation-service/src/views/userCenter/myFinance.vue b/sub-operation-service/src/views/userCenter/myFinance.vue
new file mode 100644
index 0000000..8e41880
--- /dev/null
+++ b/sub-operation-service/src/views/userCenter/myFinance.vue
@@ -0,0 +1,393 @@
+
+