From 86e45d896355eab28403c5401e84f4fd143f5e44 Mon Sep 17 00:00:00 2001 From: taohebin Date: Mon, 8 Jul 2024 10:16:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 9 +++++ pages/API/push/push.uvue | 85 ++++++++++++++++++++++++++++++++++++++++ pages/tabBar/API.uvue | 14 ++++++- 3 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 pages/API/push/push.uvue diff --git a/pages.json b/pages.json index fd26de68..1af82090 100644 --- a/pages.json +++ b/pages.json @@ -1547,7 +1547,16 @@ "navigationBarTitleText" : "", "backgroundColorContent": "#fffae8" } + }, + // #ifdef APP + { + "path" : "pages/API/push/push", + "style" : + { + "navigationBarTitleText" : "推送" + } } + // #endif ], "globalStyle": { "pageOrientation": "portrait", diff --git a/pages/API/push/push.uvue b/pages/API/push/push.uvue new file mode 100644 index 00000000..d79b429d --- /dev/null +++ b/pages/API/push/push.uvue @@ -0,0 +1,85 @@ + + + + + diff --git a/pages/tabBar/API.uvue b/pages/tabBar/API.uvue index 4afafaa2..50f00f83 100644 --- a/pages/tabBar/API.uvue +++ b/pages/tabBar/API.uvue @@ -548,7 +548,19 @@ url: "request-payment-uni-pay", } ] as Page[], - }, + }, + // #ifdef APP + { + id: "push", + name: "推送", + pages: [ + { + name: "推送示例", + url: "push" + } + ] + }, + // #endif // #ifdef APP-ANDROID { id: 'permission-listener', -- GitLab