diff --git a/src/pages.json b/src/pages.json
index db2c4f6..830b295 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -58,6 +58,10 @@
"navigationBarTitleText": "首页"
}
},
+ {
+ "path": "pages/application-list/application-list",
+ "type": "page"
+ },
{
"path": "pages/code/code",
"type": "page",
@@ -74,10 +78,6 @@
"disableScroll": true
}
},
- {
- "path": "pages/home/CustomTab",
- "type": "page"
- },
{
"path": "pages/login/login",
"type": "page",
diff --git a/src/pages/application-list/application-list.vue b/src/pages/application-list/application-list.vue
new file mode 100644
index 0000000..126a836
--- /dev/null
+++ b/src/pages/application-list/application-list.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/src/pages/home/CustomTab.vue b/src/pages/home/CustomTab.vue
index feedb58..6db1a09 100644
--- a/src/pages/home/CustomTab.vue
+++ b/src/pages/home/CustomTab.vue
@@ -1,6 +1,18 @@
-
-
+
+
+
+
+
diff --git a/src/pages/home/home.vue b/src/pages/home/home.vue
index b39176d..72aaa46 100644
--- a/src/pages/home/home.vue
+++ b/src/pages/home/home.vue
@@ -9,9 +9,8 @@
-
-
+
diff --git a/src/static/images/bg_table.png b/src/static/images/bg_table.png
new file mode 100644
index 0000000..565f0b2
Binary files /dev/null and b/src/static/images/bg_table.png differ
diff --git a/src/static/images/icon_table_menu.png b/src/static/images/icon_table_menu.png
new file mode 100644
index 0000000..e919553
Binary files /dev/null and b/src/static/images/icon_table_menu.png differ
diff --git a/src/types/uni-pages.d.ts b/src/types/uni-pages.d.ts
index 2397e12..afa4b3b 100644
--- a/src/types/uni-pages.d.ts
+++ b/src/types/uni-pages.d.ts
@@ -5,9 +5,9 @@
interface NavigateToOptions {
url: "/pages/home/home" |
+ "/pages/application-list/application-list" |
"/pages/code/code" |
"/pages/get-code/get-code" |
- "/pages/home/CustomTab" |
"/pages/login/login" |
"/pages/mine/mine" |
"/pages/notification/notification" |
diff --git a/vite.config.ts b/vite.config.ts
index 2841da9..650270e 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -52,7 +52,7 @@ export default ({ command, mode }) => {
plugins: [
UniPages({
- exclude: ['**/components/**/**.*'],
+ exclude: ['**/**/[A-Z][a-zA-Z0-9]*.*'],
routeBlockLang: 'json5', // 虽然设了默认值,但是vue文件还是要加上 lang="json5", 这样才能很好地格式化
// homePage 通过 vue 文件的 route-block 的type="home"来设定
// pages 目录为 src/pages,分包目录不能配置在pages目录下