Browse Source

chore: remove gitignore files

windyeasy 4 weeks ago
parent
commit
61a0dc7b32
2 changed files with 0 additions and 141 deletions
  1. 0 112
      src/pages.json
  2. 0 29
      src/types/uni-pages.d.ts

+ 0 - 112
src/pages.json

@@ -1,112 +0,0 @@
-{
-  "globalStyle": {
-    "navigationStyle": "default",
-    "navigationBarTitleText": "hospital-mobile",
-    "navigationBarBackgroundColor": "#ffffff",
-    "navigationBarTextStyle": "black",
-    "backgroundColor": "#FFFFFF"
-  },
-  "easycom": {
-    "autoscan": true,
-    "custom": {
-      "^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue",
-      "^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue",
-      "^uv-(.*)": "@climblee/uv-ui/components/uv-$1/uv-$1.vue"
-    }
-  },
-  "tabBar": {
-    "color": "#999999",
-    "selectedColor": "#018d71",
-    "backgroundColor": "#F8F8F8",
-    "borderStyle": "black",
-    "height": "50px",
-    "fontSize": "10px",
-    "iconWidth": "24px",
-    "spacing": "3px",
-    "list": [
-      {
-        "iconPath": "static/tabbar/home.png",
-        "selectedIconPath": "static/tabbar/homeHL.png",
-        "pagePath": "pages/index/index",
-        "text": "预诊大厅"
-      },
-      {
-        "iconPath": "static/tabbar/example.png",
-        "selectedIconPath": "static/tabbar/exampleHL.png",
-        "pagePath": "pages/profile/index",
-        "text": "我的"
-      }
-    ]
-  },
-  "pages": [
-    {
-      "path": "pages/profile/index",
-      "type": "home",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "我的"
-      }
-    },
-    {
-      "path": "pages/index/index",
-      "type": "home",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "首页"
-      }
-    },
-    {
-      "path": "pages/agreement/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationBarTitleText": "用户协议",
-        "navigationStyle": "default"
-      }
-    },
-    {
-      "path": "pages/forget-password/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationBarTitleText": "忘记密码",
-        "navigationStyle": "default"
-      }
-    },
-    {
-      "path": "pages/login/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "登录"
-      }
-    },
-    {
-      "path": "pages/patient-detail/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationBarTitleText": "患者详情"
-      }
-    },
-    {
-      "path": "pages/register/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationStyle": "custom",
-        "navigationBarTitleText": "注册"
-      }
-    },
-    {
-      "path": "pages/team-managent/index",
-      "type": "page",
-      "layout": "default",
-      "style": {
-        "navigationBarTitleText": "医疗团队管理"
-      }
-    }
-  ],
-  "subPackages": []
-}

+ 0 - 29
src/types/uni-pages.d.ts

@@ -1,29 +0,0 @@
-/* eslint-disable */
-/* prettier-ignore */
-// @ts-nocheck
-// Generated by vite-plugin-uni-pages
-
-interface NavigateToOptions {
-  url: "/pages/profile/index" |
-       "/pages/index/index" |
-       "/pages/agreement/index" |
-       "/pages/forget-password/index" |
-       "/pages/login/index" |
-       "/pages/patient-detail/index" |
-       "/pages/register/index" |
-       "/pages/team-managent/index";
-}
-interface RedirectToOptions extends NavigateToOptions {}
-
-interface SwitchTabOptions {
-  url: "/pages/index/index" | "/pages/profile/index"
-}
-
-type ReLaunchOptions = NavigateToOptions | SwitchTabOptions;
-
-declare interface Uni {
-  navigateTo(options: UniNamespace.NavigateToOptions & NavigateToOptions): void;
-  redirectTo(options: UniNamespace.RedirectToOptions & RedirectToOptions): void;
-  switchTab(options: UniNamespace.SwitchTabOptions & SwitchTabOptions): void;
-  reLaunch(options: UniNamespace.ReLaunchOptions & ReLaunchOptions): void;
-}