diff --git a/App.vue b/App.vue index 8c2b732..9ad7f9f 100644 --- a/App.vue +++ b/App.vue @@ -1,17 +1,29 @@ + uni-page-body, + #app { + height: 100%; + } + \ No newline at end of file diff --git a/androidPrivacy.json b/androidPrivacy.json new file mode 100644 index 0000000..a78485c --- /dev/null +++ b/androidPrivacy.json @@ -0,0 +1,3 @@ +{ + "prompt" : "none" +} diff --git a/components/Menu.vue b/components/Menu.vue new file mode 100644 index 0000000..ded604e --- /dev/null +++ b/components/Menu.vue @@ -0,0 +1,126 @@ + + + + + \ No newline at end of file diff --git a/index.html b/index.html index c3ff205..ba48ba1 100644 --- a/index.html +++ b/index.html @@ -18,3 +18,8 @@ + \ No newline at end of file diff --git a/manifest.json b/manifest.json index 9de36fb..a4e8057 100644 --- a/manifest.json +++ b/manifest.json @@ -1,75 +1,81 @@ { - "name": "yglt_uniapp", - "appid": "__UNI__542B476", - "description": "", - "versionName": "1.0.0", - "versionCode": "100", - "transformPx": false, - /* 5+App特有相关 */ - "app-plus": { - "usingComponents": true, - "nvueStyleCompiler": "uni-app", - "compilerVersion": 3, - "compatible": { - "ignoreVersion": true - }, - "splashscreen": { - "alwaysShowBeforeRender": true, - "waiting": true, - "autoclose": true, - "delay": 0 - }, - /* 模块配置 */ - "modules": {}, - /* 应用发布信息 */ - "distribute": { - /* android打包配置 */ - "android": { - "permissions": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] - }, - /* ios打包配置 */ - "ios": {}, - /* SDK配置 */ - "sdkConfigs": {} - } - }, - /* 快应用特有相关 */ - "quickapp": {}, - /* 小程序特有相关 */ - "mp-weixin": { - "appid": "", - "setting": { - "urlCheck": false - }, - "usingComponents": true - }, - "mp-alipay": { - "usingComponents": true - }, - "mp-baidu": { - "usingComponents": true - }, - "mp-toutiao": { - "usingComponents": true - }, - "uniStatistics": { - "enable": false - }, - "vueVersion": "3" -} \ No newline at end of file + "name" : "yglt_uniapp", + "appid" : "__UNI__542B476", + "description" : "", + "versionName" : "1.0.0", + "versionCode" : "100", + "transformPx" : false, + /* 5+App特有相关 */ + "app-plus" : { + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "compatible" : { + "ignoreVersion" : true + }, + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : true, + "autoclose" : true, + "delay" : 0 + }, + /* 模块配置 */ + "modules" : {}, + /* 应用发布信息 */ + "distribute" : { + /* android打包配置 */ + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + /* ios打包配置 */ + "ios" : {}, + /* SDK配置 */ + "sdkConfigs" : {}, + "splashscreen" : { + "androidStyle" : "common", + "iosStyle" : "common", + "useOriginalMsgbox" : false + } + } + }, + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "", + "setting" : { + "urlCheck" : false + }, + "usingComponents" : true + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "orientation" : [ "landscape-primary" ], + "vueVersion" : "3" +} diff --git a/pages.json b/pages.json index 869105d..26b2482 100644 --- a/pages.json +++ b/pages.json @@ -1,17 +1,46 @@ { "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { - "path": "pages/index/index", - "style": { - "navigationBarTitleText": "uni-app" - } + "path": "pages/index/index" + }, + { + "path": "pages/BrandDisplay/BrandDisplay", + "style": {} + }, + { + "path": "pages/LocationAmenities/LocationAmenities", + "style": {} + }, + { + "path": "pages/ProjectPlanning/ProjectPlanning", + "style": {} + }, + { + "path": "pages/FloorPlanShowcase/FloorPlanShowcase", + "style": {} + }, + { + "path": "pages/RouteNavigation/RouteNavigation", + "style": {} + }, + { + "path": "pages/ArchitecturalDetails/ArchitecturalDetails", + "style": {} + }, + { + "path": "pages/TechnologySystems/TechnologySystems", + "style": {} } ], "globalStyle": { + "navigationStyle": "custom", "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", - "backgroundColor": "#F8F8F8" + "backgroundColor": "#F8F8F8", + "rpxCalcMaxDeviceWidth": 2880, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960 + "rpxCalcBaseDeviceWidth": 1920, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375 + "rpxCalcIncludeWidth": 2880 // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750 }, "uniIdRouter": {} -} +} \ No newline at end of file diff --git a/pages/ArchitecturalDetails/ArchitecturalDetails.vue b/pages/ArchitecturalDetails/ArchitecturalDetails.vue new file mode 100644 index 0000000..d0c7138 --- /dev/null +++ b/pages/ArchitecturalDetails/ArchitecturalDetails.vue @@ -0,0 +1,32 @@ + + + + + + \ No newline at end of file diff --git a/pages/BrandDisplay/BrandDisplay.vue b/pages/BrandDisplay/BrandDisplay.vue new file mode 100644 index 0000000..25f35d2 --- /dev/null +++ b/pages/BrandDisplay/BrandDisplay.vue @@ -0,0 +1,146 @@ + + + + + + \ No newline at end of file diff --git a/pages/FloorPlanShowcase/FloorPlanShowcase.vue b/pages/FloorPlanShowcase/FloorPlanShowcase.vue new file mode 100644 index 0000000..de505bb --- /dev/null +++ b/pages/FloorPlanShowcase/FloorPlanShowcase.vue @@ -0,0 +1,32 @@ + + + + + + \ No newline at end of file diff --git a/pages/LocationAmenities/LocationAmenities.vue b/pages/LocationAmenities/LocationAmenities.vue new file mode 100644 index 0000000..16087db --- /dev/null +++ b/pages/LocationAmenities/LocationAmenities.vue @@ -0,0 +1,33 @@ + + + + + + \ No newline at end of file diff --git a/pages/ProjectPlanning/ProjectPlanning.vue b/pages/ProjectPlanning/ProjectPlanning.vue new file mode 100644 index 0000000..184931f --- /dev/null +++ b/pages/ProjectPlanning/ProjectPlanning.vue @@ -0,0 +1,612 @@ + + + + + + \ No newline at end of file diff --git a/pages/RouteNavigation/RouteNavigation.vue b/pages/RouteNavigation/RouteNavigation.vue new file mode 100644 index 0000000..bab92c2 --- /dev/null +++ b/pages/RouteNavigation/RouteNavigation.vue @@ -0,0 +1,32 @@ + + + + + + \ No newline at end of file diff --git a/pages/TechnologySystems/TechnologySystems.vue b/pages/TechnologySystems/TechnologySystems.vue new file mode 100644 index 0000000..6dd07ac --- /dev/null +++ b/pages/TechnologySystems/TechnologySystems.vue @@ -0,0 +1,32 @@ + + + + + + \ No newline at end of file diff --git a/pages/index/index.vue b/pages/index/index.vue index 6cc614d..6bbe9bc 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,52 +1,33 @@ - - \ No newline at end of file diff --git a/static/five1.jpg b/static/five1.jpg new file mode 100644 index 0000000..4b0b9d3 Binary files /dev/null and b/static/five1.jpg differ diff --git a/static/five10.jpg b/static/five10.jpg new file mode 100644 index 0000000..1a9d83a Binary files /dev/null and b/static/five10.jpg differ diff --git a/static/five2.jpg b/static/five2.jpg new file mode 100644 index 0000000..ae1718b Binary files /dev/null and b/static/five2.jpg differ diff --git a/static/five3.jpg b/static/five3.jpg new file mode 100644 index 0000000..51b8db3 Binary files /dev/null and b/static/five3.jpg differ diff --git a/static/five4.jpg b/static/five4.jpg new file mode 100644 index 0000000..e5f3635 Binary files /dev/null and b/static/five4.jpg differ diff --git a/static/five5.jpg b/static/five5.jpg new file mode 100644 index 0000000..9502f55 Binary files /dev/null and b/static/five5.jpg differ diff --git a/static/five6.jpg b/static/five6.jpg new file mode 100644 index 0000000..7fb8521 Binary files /dev/null and b/static/five6.jpg differ diff --git a/static/five7.jpg b/static/five7.jpg new file mode 100644 index 0000000..4a31e55 Binary files /dev/null and b/static/five7.jpg differ diff --git a/static/five8.jpg b/static/five8.jpg new file mode 100644 index 0000000..a311618 Binary files /dev/null and b/static/five8.jpg differ diff --git a/static/five9.jpg b/static/five9.jpg new file mode 100644 index 0000000..00129df Binary files /dev/null and b/static/five9.jpg differ diff --git a/static/home.jpg b/static/home.jpg new file mode 100644 index 0000000..1ca8c35 Binary files /dev/null and b/static/home.jpg differ diff --git a/static/homelogo.png b/static/homelogo.png new file mode 100644 index 0000000..3a07ef5 Binary files /dev/null and b/static/homelogo.png differ diff --git a/static/locationamenities.jpg b/static/locationamenities.jpg new file mode 100644 index 0000000..cbdd6a0 Binary files /dev/null and b/static/locationamenities.jpg differ diff --git a/static/seven1.jpg b/static/seven1.jpg new file mode 100644 index 0000000..cc832b2 Binary files /dev/null and b/static/seven1.jpg differ diff --git a/static/seven2.jpg b/static/seven2.jpg new file mode 100644 index 0000000..64cff2d Binary files /dev/null and b/static/seven2.jpg differ diff --git a/static/six1.jpg b/static/six1.jpg new file mode 100644 index 0000000..607a3a3 Binary files /dev/null and b/static/six1.jpg differ diff --git a/static/threefourone.jpg b/static/threefourone.jpg new file mode 100644 index 0000000..64018e5 Binary files /dev/null and b/static/threefourone.jpg differ diff --git a/static/threefourthree.jpg b/static/threefourthree.jpg new file mode 100644 index 0000000..81e7170 Binary files /dev/null and b/static/threefourthree.jpg differ diff --git a/static/threefourtwo.jpg b/static/threefourtwo.jpg new file mode 100644 index 0000000..16e6348 Binary files /dev/null and b/static/threefourtwo.jpg differ diff --git a/static/threerightone.png b/static/threerightone.png new file mode 100644 index 0000000..d372395 Binary files /dev/null and b/static/threerightone.png differ diff --git a/static/topleftoneone.png b/static/topleftoneone.png new file mode 100644 index 0000000..89d9c49 Binary files /dev/null and b/static/topleftoneone.png differ diff --git a/static/topleftonethree.jpg b/static/topleftonethree.jpg new file mode 100644 index 0000000..a2e321a Binary files /dev/null and b/static/topleftonethree.jpg differ diff --git a/static/topleftonetwo.jpg b/static/topleftonetwo.jpg new file mode 100644 index 0000000..4e4dd7a Binary files /dev/null and b/static/topleftonetwo.jpg differ diff --git a/static/toplefttwotwo.jpg b/static/toplefttwotwo.jpg new file mode 100644 index 0000000..ac5607b Binary files /dev/null and b/static/toplefttwotwo.jpg differ diff --git a/static/tworight.jpg b/static/tworight.jpg new file mode 100644 index 0000000..1fa3f47 Binary files /dev/null and b/static/tworight.jpg differ