From 0bef97c39a8d37415a72aa2d5b8af1ac7d6b3b81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=99=93=E9=B9=8F?= Date: Fri, 13 Jun 2025 17:22:28 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E8=A1=A5=E6=96=99=E9=AA=8C?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/main/home.vue | 2 -- pages/ruleClaim/details.vue | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pages/main/home.vue b/pages/main/home.vue index 149b304..40cc35e 100644 --- a/pages/main/home.vue +++ b/pages/main/home.vue @@ -34,11 +34,9 @@ {{ t('home.scblyz') }} - {{ t('home.sctl') }} - {{ t('home.sctlyz') }} diff --git a/pages/ruleClaim/details.vue b/pages/ruleClaim/details.vue index 2cd760e..c9bf8d7 100644 --- a/pages/ruleClaim/details.vue +++ b/pages/ruleClaim/details.vue @@ -76,6 +76,7 @@ }).then((res:any) => { if(res.code === 200){ uni.$u.toast(t('public.cg')) + toPages('/pages/ruleClaim/index') } }) } @@ -96,6 +97,12 @@ let item = val.find((p : any) => p.Key === (lang_Id === 'cn' ? 2052 : 1033)); return item ? item.Value : (val[0]?.Value || ''); }; + const toPages = (url : string, data : any = {}) => { + uni.$u.route({ + url: url, + params: data + }) + }