Browse Source

feat(message): 消息页

Tim_Walker 2 years ago
parent
commit
0cd1ebc900
2 changed files with 19 additions and 1 deletions
  1. 10 1
      src/pages.json
  2. 9 0
      src/pages/message/index.vue

+ 10 - 1
src/pages.json

@@ -9,6 +9,12 @@
         "navigationBarTitleText": "首页"
       }
     },
+    {
+      "path":"pages/message/index",
+      "style":{
+        "navigationBarTitleText":"消息"
+      }
+    },
     {
       "path": "pages/mine/index",
       "style": {
@@ -43,9 +49,12 @@
     "list": [
       {
         "pagePath": "pages/home/index",
-
         "text": "首页"
       },
+      {
+        "pagePath": "pages/message/index",
+        "text": "消息"
+      },
       {
         "pagePath": "pages/mine/index",
         "text": "我的"

+ 9 - 0
src/pages/message/index.vue

@@ -0,0 +1,9 @@
+<template>
+  <view> message </view>
+</template>
+
+<script>
+export default {};
+</script>
+
+<style lang="scss" scoped></style>