diff --git a/初始化/App.uvue b/初始化/App.uvue
new file mode 100644
index 0000000..11ba5c4
--- /dev/null
+++ b/初始化/App.uvue
@@ -0,0 +1,49 @@
+
+
+
\ No newline at end of file
diff --git a/初始化/index.html b/初始化/index.html
new file mode 100644
index 0000000..742e86d
--- /dev/null
+++ b/初始化/index.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/初始化/main.uts b/初始化/main.uts
new file mode 100644
index 0000000..07ed640
--- /dev/null
+++ b/初始化/main.uts
@@ -0,0 +1,9 @@
+import App from './App.uvue'
+
+import { createSSRApp } from 'vue'
+export function createApp() {
+ const app = createSSRApp(App)
+ return {
+ app
+ }
+}
\ No newline at end of file
diff --git a/初始化/manifest.json b/初始化/manifest.json
new file mode 100644
index 0000000..4e99048
--- /dev/null
+++ b/初始化/manifest.json
@@ -0,0 +1,43 @@
+{
+ "name" : "111",
+ "appid" : "__UNI__ABF0653",
+ "description" : "",
+ "versionName" : "1.0.0",
+ "versionCode" : "100",
+ "uni-app-x" : {},
+ /* 快应用特有相关 */
+ "quickapp" : {},
+ /* 小程序特有相关 */
+ "mp-weixin" : {
+ "appid" : "wx7d74b5db6c1f7328",
+ "setting" : {
+ "urlCheck" : false
+ },
+ "usingComponents" : true
+ },
+ "mp-alipay" : {
+ "usingComponents" : true
+ },
+ "mp-baidu" : {
+ "usingComponents" : true
+ },
+ "mp-toutiao" : {
+ "usingComponents" : true
+ },
+ "uniStatistics" : {
+ "enable" : false
+ },
+ "vueVersion" : "3",
+ "app" : {
+ "distribute" : {
+ "icons" : {
+ "android" : {
+ "hdpi" : "",
+ "xhdpi" : "",
+ "xxhdpi" : "",
+ "xxxhdpi" : ""
+ }
+ }
+ }
+ }
+}
diff --git a/初始化/pages.json b/初始化/pages.json
new file mode 100644
index 0000000..6916894
--- /dev/null
+++ b/初始化/pages.json
@@ -0,0 +1,69 @@
+{
+ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ {
+ "path": "pages/index/login",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle":"custom"
+ }
+ },
+ {
+ "path": "pages/home/home",
+ "style": {
+ "navigationBarTitleText": "北京汽车有限公司",
+ "navigationStyle":"custom"
+ },
+ "needLogin": true
+ },
+ {
+ "path": "pages/index/wode",
+ "style": {
+ "navigationBarTitleText": "北京汽车有限公司",
+ "navigationStyle":"custom"
+ },
+ "needLogin": true
+ }
+ ],
+ "globalStyle": {
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "uni-app x",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "backgroundColor": "#F8F8F8"
+ },
+ "uniIdRouter": {},
+ "tabBar": {
+ "color": "#7A7E83",
+ "selectedColor": "#3cc51f",
+ "borderStyle": "black",
+ "backgroundColor": "#ffffff",
+ "list": [{
+ "pagePath": "pages/home/home",
+ "iconPath": "",
+ "selectedIconPath": "static/image/icon_component_HL.png",
+ "text": "首页"
+ }, {
+ "pagePath": "",
+ "iconPath": "",
+ "selectedIconPath": "static/image/icon_API_HL.png",
+ "text": "订单"
+ },
+ {
+ "pagePath": "pages/index/wode",
+ "iconPath": "",
+ "selectedIconPath": "static/image/icon_API_HL.png",
+ "text": "我的"
+ }
+ ]
+ },
+ "condition" : { //模式配置,仅开发期间生效
+ "current": 0, //当前激活的模式(list 的索引项)
+ "list": [
+ {
+ "name": "", //模式名称
+ "path": "", //启动页面,必选
+ "query": "" //启动参数,在页面的onLoad函数里面得到
+ }
+ ]
+ }
+
+}