From 41ef0e266abb1d5e4c594021da2e95b34b767633 Mon Sep 17 00:00:00 2001 From: Burt <1020103647@qq.com> Date: Fri, 12 Jan 2024 09:15:40 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E7=89=88=E4=B9=9D=E5=AE=AB?= =?UTF-8?q?=E6=A0=BC=E6=8A=BD=E5=A5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 4 + src/pages/lottery/nine-grid.vue | 190 ++++++++++++++++++++++++++++++++ uni-pages.d.ts | 1 + 3 files changed, 195 insertions(+) create mode 100644 src/pages/lottery/nine-grid.vue diff --git a/src/pages.json b/src/pages.json index d49846f..8e6f6e8 100644 --- a/src/pages.json +++ b/src/pages.json @@ -73,6 +73,10 @@ "navigationBarTitleText": "登录" } }, + { + "path": "pages/lottery/nine-grid", + "type": "page" + }, { "path": "pages/my/index", "type": "page", diff --git a/src/pages/lottery/nine-grid.vue b/src/pages/lottery/nine-grid.vue new file mode 100644 index 0000000..7628c7c --- /dev/null +++ b/src/pages/lottery/nine-grid.vue @@ -0,0 +1,190 @@ + + + + diff --git a/uni-pages.d.ts b/uni-pages.d.ts index ff6521f..06440fd 100644 --- a/uni-pages.d.ts +++ b/uni-pages.d.ts @@ -9,6 +9,7 @@ interface NavigateToOptions { "pages/demo/lottery" | "pages/demo/lottery2" | "pages/login/login" | + "pages/lottery/nine-grid" | "pages/my/index" | "pages/throughout/index" | "pages/index/demo/component-auto-import" |