From b8f01b7dedef045ae8e17e9335692f66168718d5 Mon Sep 17 00:00:00 2001 From: yangrz Date: Tue, 2 Apr 2024 12:40:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=90=86=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E9=A1=B5=E3=80=81=E6=8F=90=E7=8E=B0=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E9=A1=B5=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agentApp/pages.json | 4 ++-- agentApp/pages/account-opened/account-opened.vue | 2 +- agentApp/pages/agent-index/index.vue | 2 +- .../agent-withdraw-history.vue} | 0 .../{cash/cash.vue => agent-withdraw/agent-withdraw.vue} | 2 +- agentApp/pages/allpages/index.vue | 6 +++--- agentApp/pages/cashdetail/cashdetail.vue | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) rename agentApp/pages/{history/history.vue => agent-withdraw-history/agent-withdraw-history.vue} (100%) rename agentApp/pages/{cash/cash.vue => agent-withdraw/agent-withdraw.vue} (99%) diff --git a/agentApp/pages.json b/agentApp/pages.json index 3800413..c8fcd9f 100644 --- a/agentApp/pages.json +++ b/agentApp/pages.json @@ -42,7 +42,7 @@ } }, { - "path": "pages/cash/cash", + "path": "pages/agent-withdraw/agent-withdraw", "style": { "navigationBarTitleText": "代理提现", "navigationBarBackgroundColor": "#1783FF", @@ -58,7 +58,7 @@ } }, { - "path": "pages/history/history", + "path": "pages/agent-withdraw-history/agent-withdraw-history", "style": { "navigationBarTitleText": "代理提现历史", "navigationBarBackgroundColor": "#1783FF", diff --git a/agentApp/pages/account-opened/account-opened.vue b/agentApp/pages/account-opened/account-opened.vue index 135ac07..10cf084 100644 --- a/agentApp/pages/account-opened/account-opened.vue +++ b/agentApp/pages/account-opened/account-opened.vue @@ -91,7 +91,7 @@ export default { methods: { cashManager() { uni.navigateTo({ - url: '/pages/history/history' + url: '/pages/agent-withdraw-history/agent-withdraw-history' }); } } diff --git a/agentApp/pages/agent-index/index.vue b/agentApp/pages/agent-index/index.vue index 7a8ebb8..fe2b731 100644 --- a/agentApp/pages/agent-index/index.vue +++ b/agentApp/pages/agent-index/index.vue @@ -115,7 +115,7 @@ }, cashManager() { uni.navigateTo({ - url: '/pages/cash/cash' + url: '/pages/agent-withdraw/agent-withdraw' }); } }, diff --git a/agentApp/pages/history/history.vue b/agentApp/pages/agent-withdraw-history/agent-withdraw-history.vue similarity index 100% rename from agentApp/pages/history/history.vue rename to agentApp/pages/agent-withdraw-history/agent-withdraw-history.vue diff --git a/agentApp/pages/cash/cash.vue b/agentApp/pages/agent-withdraw/agent-withdraw.vue similarity index 99% rename from agentApp/pages/cash/cash.vue rename to agentApp/pages/agent-withdraw/agent-withdraw.vue index fa46bd1..e10cf10 100644 --- a/agentApp/pages/cash/cash.vue +++ b/agentApp/pages/agent-withdraw/agent-withdraw.vue @@ -213,7 +213,7 @@ }, cashManager() { uni.navigateTo({ - url: '/pages/history/history' + url: '/pages/agent-withdraw-history/agent-withdraw-history' }); }, getSysConfig() { diff --git a/agentApp/pages/allpages/index.vue b/agentApp/pages/allpages/index.vue index 852ee64..9c87842 100644 --- a/agentApp/pages/allpages/index.vue +++ b/agentApp/pages/allpages/index.vue @@ -58,7 +58,7 @@ case 17: uni.navigateTo({ - url: '/pages/history/history' + url: '/pages/agent-withdraw-history/agent-withdraw-history' }); break; case 20: @@ -100,7 +100,7 @@ break; case 11: uni.navigateTo({ - url: '/pages/cash/cash' + url: '/pages/agent-withdraw/agent-withdraw' }); break; case 12: @@ -110,7 +110,7 @@ break; case 13: uni.navigateTo({ - url: '/pages/history/history' + url: '/pages/agent-withdraw-history/agent-withdraw-history' }); break; default: diff --git a/agentApp/pages/cashdetail/cashdetail.vue b/agentApp/pages/cashdetail/cashdetail.vue index 8474b66..71b7c7a 100644 --- a/agentApp/pages/cashdetail/cashdetail.vue +++ b/agentApp/pages/cashdetail/cashdetail.vue @@ -91,7 +91,7 @@ export default { methods: { cashManager() { uni.navigateTo({ - url: '/pages/history/history' + url: '/pages/agent-withdraw-history/agent-withdraw-history' }); } }