From 973f7c82f25ce15384840acf77ffa26de0556553 Mon Sep 17 00:00:00 2001 From: aiShuiJiaoDeXioShou <2832294398@qq.com> Date: Sun, 8 Sep 2024 15:53:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD:=20webview?= =?UTF-8?q?=E6=B5=8F=E8=A7=88=E5=99=A8=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- acdr-ui/src/pages.json | 9 +++++++++ acdr-ui/src/pages/webview/webview.vue | 24 ++++++++++++++++++++++++ acdr-ui/src/types/uni-pages.d.ts | 1 + 3 files changed, 34 insertions(+) create mode 100644 acdr-ui/src/pages/webview/webview.vue diff --git a/acdr-ui/src/pages.json b/acdr-ui/src/pages.json index 040ac0f1..85e3eadc 100644 --- a/acdr-ui/src/pages.json +++ b/acdr-ui/src/pages.json @@ -312,6 +312,15 @@ "navigationStyle": "custom" } }, + { + "path": "pages/webview/webview", + "type": "page", + "layout": "default", + "style": { + "navigationBarTitleText": "h5小程序", + "navigationStyle": "custom" + } + }, { "path": "pages/mall/index/index", "aliasPath": "/mall", diff --git a/acdr-ui/src/pages/webview/webview.vue b/acdr-ui/src/pages/webview/webview.vue new file mode 100644 index 00000000..4cd61548 --- /dev/null +++ b/acdr-ui/src/pages/webview/webview.vue @@ -0,0 +1,24 @@ + +{ + layout: 'default', + style: { + navigationBarTitleText: 'h5小程序', + navigationStyle: 'custom', + }, +} + + + + + + + diff --git a/acdr-ui/src/types/uni-pages.d.ts b/acdr-ui/src/types/uni-pages.d.ts index bcc0cee6..b7864a10 100644 --- a/acdr-ui/src/types/uni-pages.d.ts +++ b/acdr-ui/src/types/uni-pages.d.ts @@ -43,6 +43,7 @@ interface NavigateToOptions { "/pages/service/store" | "/pages/settings/index" | "/pages/space/index" | + "/pages/webview/webview" | "/pages/mall/index/index" | "/pages/mall/index/user" | "/pages/mall/index/category" |